How to get Manage Pages permission to a particular facebook page or app?

facebook, facebook-c#-sdk, facebook-graph-api

Solution

This isn't possible with the API. You can control the scope of your changes to just one page client-side, but there's no way to get a list of pages without manage_pages permission. Once you have the permission, you can use the page access token to make changes to individual pages. See the `accounts` connection under `Users` for more info https://developers.facebook.com/docs/reference/api/user/

Problem

Is it possible to get permission to access particular page/app using Manage Pages Permissions? Ex: A third party application requires access to a user's page. Using "Manage_Pages" gives access to all the pages and apps that user has created/installed. How can I just ask Mange_Pages permission for particular page? Below related questions found on SO but none of them gave the answer. - how to set manage_pages permission to a particular facebook page? - Facebook api: show dialog window for the user select page (manage_pages extendend perm)

Original source