0

I need to implement a small script, which would automatically upload and post videos on our Facebook page. I got the token as described here. But when I try to upload a video, I get the error

   No permission to publish the video [HTTP 400] (Koala::Facebook::ClientError)

I have the following permissions for the page:

     user_friends, manage_pages, public_profile

     "perms": [
        "ADMINISTER",
        "EDIT_PROFILE",
        "CREATE_CONTENT",
        "MODERATE_CONTENT",
        "CREATE_ADS",
        "BASIC_ADMIN"
     ]

How can I solve that? Thanks in advance!

Community
  • 1
  • 1
jenia
  • 55
  • 6

1 Answers1

3

"Publish_action" permission for post status with Images or Videos. It Should Work.

  • and how/where could I add it? – jenia Oct 29 '15 at 12:32
  • Ok, as I understand, I need to submit the app to review in order to activate this, but the thing is, I do not need a working app, I just need permissions to post to our corporate FB page.. – jenia Oct 29 '15 at 12:48
  • 1. Here is the example how and where you can use that permission(Hope you got other things) https://www.facebook.com/dialog/oauth?client_id=123456789&redirect_uri=http://localhost:1234&response_type=token&scope=publish_actions 2. If you want to post status to page by one account means if that account is developer or owner of the app means you no need to submit your app for review. – Naveen - நவீன் Oct 30 '15 at 09:42
  • If this answer helps means you can select above answer as correct. – Naveen - நவீன் Dec 11 '15 at 13:26