Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can we authenticate to facebook Via API not through User Interface which prompts for credentials?

Since facebook is turning off/removing the Offline_Access permission, Is there any way I can login using App? I am planning to use Facebook C# SDK v 6.0.

In otherwords, how to authenticate as an app by using Facebook C# SDK V 6.

I found this documentation on facebook http://developers.facebook.com/docs/authentication/applications/

I want to use app authentication and then post to pages which has already granted "manage_pages,publish_Stream" permissions to the app by using graph api explorer.

share|improve this question
If you already have a page access token – those do not expire by default – then way not just use that to post to the page? – CBroe Aug 8 '12 at 7:55
I have page access token, but the new facebook changes remove "Offline_Access" permission by Oct 3rd. So I need to get the page access token by using user credentials via API not through UI. – user1401299 Aug 8 '12 at 17:34
You can get a page access token via API, if the current app user has given you manage_pages permission – then you just have to query /me/accounts and pick the right page from there. – CBroe Aug 9 '12 at 10:01
Well, Let me explain the problem I am facing. I am the user and I administer 2 pages other than my page feed. I have created an app and granted the manage_permissions,Publish_stream by using Graph API Explorer at developers.facebook.com and then I want to use a program with out user intervention which can post to the other pages which I administer but not to my page feed. I tried the code by getting application token and try to post these pages by [PAgeID]/Feed and its giving me an OAuth exception - User hasn't authorized to perform this action. How can I do this? – user1401299 Aug 9 '12 at 13:46
Again: Get a page access token. – CBroe Aug 9 '12 at 14:25
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.