I am using Facebook c# SDK to authenticate user (successfully). But I want also to use FB.ui JS methods on client. Is there any way to "reuse" already received access_token from c# SDK in Facebook JS SDK? I don't want to call FB.Login because I've already authenticated user on server side.
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.
|
Just put the access_token string to a hidden field and get the value through javascript and pass it to the JS API Methods. |
|||
|
|
|
|||
|
|
FB.getLoginStatus()? at least this would insure that the user is still logged-in when you make an API call. – ifaour Sep 13 '11 at 8:18