How can I request permission to publish_actions?

Washington Post (https://www.facebook.com/dialog/permissions.request?app_id=225771117449558&display=page&next=https%3A%2F%2Fapps.facebook.com%2Fwpsocialreader%2F%3F& type = user_agent & canvas = 1 & perms = user_about_me% 2Cuser_likes% 2Cpublish_actions ") may request publish_actions permission.

This says it on Facebook:

In the Open Graph beta version, publish_actions permission can only be requested by developers and test users of your application. The permission "publish_actions" will be ignored when prompted by any other user.

When I try to request permission from non-developers, this shows:

Logging in to your account will not add this activity to Facebook.

+4
source share
4 answers

The publication request currently works as follows

  • If your application is in the Games category and you use the grades and achievements API
  • To test new open Graph Open objects and actions - this will only work for developers / test users of the application who have a timeline - to use it with regular users, you have to wait until Timeline starts and applications start getting approval to use new APIs
+1
source

Yes, this will only work when the schedule is rolled out for everyone. When is the revised date, I do not know.

+1
source

In addition to the Facebook application authentication settings, you need to update fb:login-button to request publish_actions permission .

See: Facebook Developers - login button

+1
source

User of this function

 function postToFacebook() { FB.ui({ method: 'feed', link: 'www.fb.com/mahfuzcmt', caption: 'bitSoft', }, function(response){}); } 

and call

  <a href="#" onClick="postToFacebook()">Post to Facebook</a> 

reference

0
source

Source: https://habr.com/ru/post/971820/


All Articles