I need some help.
I don't no what to do after the user allows my application. On my pageLoad I verify if the URL has code(generated by Facebook) and redirect again with the string code to get the access token.
Facebook redirect again with the access token and now I have the token.
What is the next step?
...on pageload...
..........................
if (Request.QueryString["code"] != null && !Page.IsPostBack)
{
string code = Request.QueryString["code"];
string urlFinal = "https://graph.facebook.com/oauth/access_token?" +
"client_id=" + appID +
"&redirect_uri=" + redirectURL +
"&client_secret=" + appSecret +
"&code=" + code;
Response.Redirect(urlFinal);
}
else if (Request.QueryString["access_token"] != null)
string token = Request.QueryString["access_token"];
//AND NOW??