Reputation: 31
I'm develop application to upload picture file. But the picture can't upload directly to album. Alway have to approve before upload. How to solving this problem?
Would you like to add these photos to your album? The photos below were uploaded from another application, you'll need to approve them.
Upvotes: 3
Views: 2142
Reputation: 904
The answer by Igy on this question resolved the issue for me:
to upload to albums without specific user approval of each photo the Permission is user_photos
One important exception to this is if the user, when installing your app, chooses a privacy setting that is more restrictive than the privacy setting on the album you're trying to upload to - in that case the user still needs to manually approve the photo, because their previous selection for maximum visibility of your app's content would not be respected if you could upload to a more-visible album
Upvotes: 1
Reputation: 43816
You need the user_photos
permission to upload directly to an album; you may be uploading with the publish_stream
permission which allows photo uploads but needs them to be approved before they're shown
Upvotes: 9