Reputation: 308
So, the photo upload with the PHP SDK to Facebook works.
But when the user uploads it in one of the his own albums, he first have to go to Facebook and press allow
, only then the photo will be displayed on Facebook.
Is there a way to make sure it goes in one step (upload photo), instead of 2 (1. upload photo, 2. allow photo)?
I am using the following permissions:
-> publish_stream
,
-> photo_upload
.
And the setFileUpload
is on true
.
I hope you can help me, so there won't be angry users because they think the uploading doesn't work..
Upvotes: 0
Views: 388
Reputation: 43816
OK, this was figured out in the comments, a photo uploaded via the API needing to be confirmed usually means one of two things:
user_photos
permissionUpvotes: 2