After I authenticate with Facebook I'm getting this URL:
http://www.facebook.com/connect/login_success.html #access_token=161713100507627|2.R8bXAgr9wdiQYWJgVx_yPg__.3600.1301475600-100001169602345|sY- fl-62kCSgcn1pgiv2fYsltHE &expires_in=5996
How can I parse this URL and get the access token?
I tried request["access_token"] but it's not working: I cant get anything after the #.
the code that genrate the url
string[] extendedPermissions = new[] { "publish_stream", "offline_access" };
var oauth = new FacebookOAuthClient { AppId = current.AppId, RedirectUri = urlli };
appId = current.AppId;
var parameters = new Dictionary<string, object>
{
{ "response_type", "token" },
{ "display", "popup" }
};
if (extendedPermissions != null && extendedPermissions.Length > 0)
{
var scope = new StringBuilder();
scope.Append(string.Join(",", extendedPermissions));
parameters["scope"] = scope.ToString();
}
var loginUrl = oauth.GetLoginUrl(parameters);