Where can I find the file object with the getImage API when the iOS location is not allowed by the user?
Will the error callback have the successful file object as shown here?
file.getImage( function (file) { /* the success scenario */ , function (file) { /* the error scenario but still has successful file object */ );
Or will the error callback have both the content and file objects?
file.getImage( function (file) { /* do success scenario */ , function (content, file) { /* error scenario but has successful file object */ );
What would be the proper API pattern for this scenario?