我需要一些帮助。
用户允许我的应用程序后,我不知道该做什么。在我的 pageLoad 上,我验证 URL 是否有代码(由 Facebook 生成)并使用字符串代码再次重定向以获取访问令牌。
Facebook 再次使用访问令牌重定向,现在我有了令牌。
你下一步怎么做?
...在页面加载...
...................
if (Request.QueryString["code"] != null && !Page .IsPostBack)
{
字符串代码 = Request.QueryString["code"];
字符串 urlFinal = "https://graph.facebook.com/oauth/access_token?" +
"client_id=" + appID +
"&redirect_uri=" + redirectURL +
"&client_secret=" + appSecret +
"&code=" + 代码;
Response.Redirect(urlFinal);
}
else if (Request.QueryString["access_token"] != null)
字符串令牌 = Request.QueryString["