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.

I've been trying to figure out how to extend the access token using the Facebook JavaScript API.

I see a lot of code examples using PHP but JavaScript seems really hard to find.

A PHP SDK method that seems useful is setExtendedAccessToken() however this doesn't seem to exist in the JavaScript API or I simply haven't found it yet.

Does anyone have an example of how to use setExtendedAccessToken() in the JavaScript SDK or how to implement this method in Javascript?

share|improve this question

1 Answer

There is no way of doing that client-side.

First of all, if they wanted it to be possible client-side, then they would issue a long-lived token for client-side login from the beginning, don't you think?

And second of all, it requires your app secret, and you don't want to expose that to the client. (So "no way" is not strictly true - but to do it would be really stupid, because of the need for the app secret.)

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.