After successful authentication, Facebook redirects me to the canvas callback url with the parameter installed and session. the session parameter is like this...
&session=
{%22session_key%22%3A%222.cQWUqNcffzsWReDAcctOmA__.3600.1281524400-100000327994753%22%2C%22uid%22%3A100000327994753%2C%22expires%22%3A1281524400%2C%22secret%22%3A%22xOodxtnGGNMIK0F4Zq_sCw__%22%2C%22sig%22%3A%223eb5b89dd11e3b42d46587921ebecc52%22}
after decode it looks like
&session={
"session_key":"2.cQWUqNcffzsWReDAcctOmA__.3600.1281524400-111111327994753",
"uid":111111327994753,"
expires":1281524400,
"secret":"xOodxtnGGNMIK0F4Zq_sCw__","
sig":"3eb5b89dd11e3b42d46587921ebecc52"}
Now the prblem is that I have no idea that how i use this parameter in C# SDK. I want to get permission and also want to get auth_toke.
In FB's documentation, "accesstoken" and "auth_token" are used. Are they the same or different?