Creating a Facebook test application with permission to publish an action?

I see that Facebook has made a lot of changes to its API and working structure to create an FB application for Web / IOS / Mobile.

I am creating a facebook application with my FB developer account in order to get the secret credentials of the Test App API.

With this application I need to check the Publish_ations function (Ex: - Publish on pages / on the wall, sharing), but this function is not enabled for the Test App API. And if we want to include this, then we may have to send a review with some details. In these details, they ask you to follow the steps to verify the function that we will provide in our application. They need snapshots of the pages where this FB function will be, and ETC information. And this whole process will be up to 7 days.

I am confused by the fact that if my application is running and that we plan to develop an FB function, then how should I give steps to test Feature on our website before creating this function.

Is there any information that I lack in the FB docs to test the environment using publication permission.

Please help me, I have already wasted 7 days (I tried the FB application process and they rejected it because of an incomplete application and information)

Thanks in advance!

+4
source share
1 answer

You are confused. Things related to login / permissions work the same way as in version 1.0 ; the only difference is that after the application is ready, you have to submit a review . But what is the last step .

, API , , , , . scope . . .

, JS SDK -

FB.login(function(response) {
   // handle the response
}, {scope: 'email,user_likes'});

.

// ; . , 1.0.

( ), ( v1.0, ). , , , . .

+4

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


All Articles