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.
No, this is not possible and therefore facebook has implemented this feature to get permissions first before using facebook page-api.
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
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.
Thanks.
Subscribe to our weekly Newsletter & Keep getting latest article/questions in your inbox weekly