Can we test the facebook page manage permission even before the app review premission in granted?


Hi, I would like to know, can we test the page manage permission even before the facebook app review permission are granted,if we edit correctly the users (admins/developers/testers) in the settings of our app. Thanks.


Asked by:- LuneAgile
0
: 1953 At:- 9/2/2018 9:06:02 PM
ASP.NET facebook-page-manage page-api







2 Answers
profileImage Answered by:- Sam

No, this is not possible and therefore facebook has implemented this feature to get permissions first before using facebook page-api.

0
At:- 9/4/2018 7:31:18 AM


profileImage Answered by:- LuneAgile

Hi, Sam I have tested my app under developement mode its' working  and get permissions to manage_ page just should add a testers  under roles tab 

qa_undermode-min.png

After  you will add your appId and appSecret : under Startup.Auth.cs.

AppId = "your appId here",
AppSecret = "your appSecret here",
Scope = { "email", "manage_pages", "pages_show_list", "user_likes", "user_events", "user_videos", "user_photos", "user_status", "publish_pages" },

Provider = new FacebookAuthenticationProvider
{
OnAuthenticated = context =>
{
context.Identity.AddClaim(new System.Security.Claims.Claim("FacebookAccessToken", context.AccessToken));
return Task.FromResult(true);
}
}
});

If you see I have put all permissions on the field scope ex / manage_page. and when I was run my project this is the result.

all_scopes-min.png

sucess_manage-min.png

Thanks.

0
At:- 9/4/2018 12:18:16 PM Updated at:- 9/4/2018 12:19:34 PM






Login/Register to answer
Or
Register directly by posting answer/details

Full Name *

Email *




By posting your answer you agree on privacy policy & terms of use