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.

Using facebook graph API I can get the fb access token. And to do so I have to visit the facebook.com to allow the application to access my data. Is there any way to get the facebook access token, by using account id and password, from API, without visiting facebook.com or without any application

share|improve this question

2 Answers

up vote 1 down vote accepted

User access token:

If you want to get user access token then the answer is NO. You cannot access user access token without making the user visit facebook.

Do some reading on OAuth and understand what is its concept

App access token:

If you mean application access token then you can make a curl call to facebook. See here for details

share|improve this answer
Then how we can allow the publish_actions permissions to the app without visiting facebook? – Rana Muhammad Usman Mar 4 at 10:06
1  
@RanaMuhammadUsman you can't. Thats the point... – Liam Mar 4 at 10:37

No, this breaks the convention on OAuth. The idea is that the user gives you access to their Facebook page without releasing their username and password to you.

Facebook still controls all the usernames and passwords and the user knows they are only logging into Facebook and you are not siphoning off their username and password for your own means

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.