I have an Facebook application
Is there any way to get signed_request with JavaScript?
With PHP it looks like this: $_REQUEST['signed_request'], but I can't use php.
Thank you
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.
|
|
||||
|
|
|
From the FB JavaScript SDK, you can use FB.getLoginStatus to retrieve the signed_request. That is if the the user is logged into your app/website. If not you can call the FB.login method. Ref: http://developers.facebook.com/docs/reference/javascript/FB.getLoginStatus/ FOLLOWING ON TO YOUR COMMENT: Hi, I think you should try to log the response to your console. The response.status should equal 'connected' if the user is logged. It will always return true, as a value will be returned in this response param. The log will look like so
To test what is being return try this:
|
|||||
|
