Skip to main content

Problems with Upload Widget v2 api

Comments

1 comment

  • Raya Straus

    Can you please elaborate on why you're placing the response inside an array?

    If you take a look at result.info it is the same structure as the previous version response. If you wish to place this response into a single array, then you can simply add brackets around the response. For example,

    if (result.event == "success") {
        var arr = [result.info];
        console.log(arr);
    }
    
    0

Post is closed for comments.