Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've been successfully posting from my app to user's walls for a couple of years now using the methodology defined here: https://developers.facebook.com/docs/reference/api/post/

and now I'm switching to posting video (instead of photos) to their walls and suddenly am getting this error:

{"error":{"message":"(#200) The user hasn't authorized the application to perform this action","type":"OAuthException","code":200}}

Presumably the permissions for posting photos and videos are the same (as far as I can tell) so this is almost certainly a red herring error (not unusual for facebook). So, I'm curious if anyone else uses the /post/ method to publish content to the walls of users who have authorized your apps and I'm wondering what I'm doing wrong... After I pull the user's access token (which I have xxxed out below) the rest of my call looks like this:

    post/access_token=xxxxxxxxx
&from=MyCompany
&to=user_facebook_id
&title=SomeString
&link=URL_TO_FOLLOW_BACK_FROM_FB
&source=URL_OF_VIDEO_FILE
&name=SOME_STRING
&type=video
&picture=URL_OF_THUMBNAIL

My guess is that I'm missing something in the call, but I can't figure out what it might be.

share|improve this question
I'm guessing your app didn't ask for video posting permissions when the user did OAuth. You can specify which permissions during your OAuth process, or setup defaults on the application level. Don't have a link for you, but try searching video upload permissions – mellodev Jan 29 at 3:17
are you sure? all the info related to this seems to say that the only two permissions needed are "offline_access" and "publish_stream". I can't find anything related to granular permissions such as "video_post" or anything like that. – Dr.Dredel Jan 29 at 3:20

1 Answer

up vote 2 down vote accepted

I guess this is what is different:

Video POST requests should use graph-video.facebook.com

Source: Graph API > Video

share|improve this answer
that was totally it! thanks SO much! – Dr.Dredel Jan 29 at 3:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.