I have Facebook signed_request, which is obtained by subscribing to the event auth.loginand after the user logs in using the facebook login button
After decoding signed_request, I have the following information:
{'issued_at': 1318492701,
'code': 'AQCXI5aiyYtYLFNtkYhtKwDhO02lP[truncated]',
'user_id': '100000xxxxxxxxx',
'algorithm': 'HMAC-SHA256'}
I cannot find signed_request in the documentation . What is this codeand how to use it?
I thought that it can be used to get an authorization code, as indicated in this thread , but along with it signed_requestI also get access token for the user in the response from the login event.
source
share