I currently redirect the user to the url given and it returns the user back to the web page with 2 get arguments: 'session' and 'perms'.
The meaning of perms is obvious.
Session appears to be a JSON slash escaped array. After json_decode(slashcstrip($_GET['session'])) i find the following members: uid,session_key,secret,expires,base_domain,access_token, sig. What are secret and sig? How do I use them to validate the data?
Thanks!