English 中文(简体)
Where can I find the file object with the getImage API when the iOS location is not allowed by the user?
原标题:
  • 时间:2012-05-03 23:18:40
  •  标签:
  • trigger.io

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?

问题回答

The reason the user might be prompted for location permission when you use file.getImage is because there is location data embedded the image s EXIF metadata which could be used to covertly infer their position.

This only occurs when you read data from the gallery: if you use the saveLocation: "file" parameter to getImage, the user won t be prompted for location permission.

In either case, the success callback for file.getImage should always be invoked with a file object (unless the user cancelled image capture entirely): it s only when you come to use the file that the location permission might be needed.





相关问题
How to configure iOS application icons in trigger.io?

I am trying to configure the iOS applications icons but adding this to the config.json doesn t work. { "author": "myemail", "config_version": "2", "description": "My Extension ...

How to play background audio in iOS with Trigger.io?

I m attempting to build a streaming audio application with Trigger.io s framework. Seeing that its API currently does not feature any audio-related methods, I tested it with basic HTML5 audio tags. ...

Screencast of native Trigger.io features?

I need to build a mobile application for a client. I ve been looking at solutions like Trigger.io to simplify the task for me. I ve read through the documentation but I haven t found any examples of ...

热门标签