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 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

share|improve this question

1 Answer

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

{
    status: 'connected',
    authResponse: {
        accessToken: '...',
        expiresIn:'...',
        signedRequest:'...',
        userID:'...'
    }
}

To test what is being return try this:

if(response.status == 'connected'){
   // user is logged and signed_request is accessible
   // with response.authResponse.signedRequest
}else{
   // user not logged in, request them to login
      FB.login(function(response){ ... });
}
share|improve this answer
1  
thank you for uoyr answer. I am trying to do: FB.getLoginStatus(function(response) { if (response.authResponse) { alert("OK"); } else { alert("NO"); } /*if (response.status) { alert("OK"); } else { alert("NO"); }*/ }); response.status return YES, but response.authResponse returns NULL. It's not application that user need to install - it's just tab on my facebook page, but I need to get signed_request – user1067939 Nov 28 '11 at 22:45

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.