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.

Is it possible to get the ID (facebook Graph API) of a user who is currently logged in, without any access tokens ?

If not , then how do i get new access tokens every time a user visits my page ?

Thanks!

share|improve this question

1 Answer

up vote 0 down vote accepted

You will need to init the Facebook Javascript SDK and the user will have to have authorized your app at least one time. After that when the user visits your page as long as they are logged into Facebook you'll have access to the id and can retrieve it using

FB.getLoginStatus

the response will contain the information you're looking for.

Check this blog post for more details on setting up the FB init and the initial login.

https://developers.facebook.com/blog/post/525/

share|improve this answer
the sample code that's there in the above link,doesn't seem to be working :| – Anant Aug 22 '11 at 7:45
1  
I'd suggest checking your app settings in Facebook. Make sure under website that you've setup your url and domain correctly. – Dustin Nielson Aug 22 '11 at 15:03

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.