0

我开发了我的解决方案来获取Facebook用户详细信息。该代码在我的帐户上运行良好,但是当我尝试通过另一个帐户对其进行测试时,我没有得到任何详细信息。我将此解决方案与 Facebook 选项卡绑定,因为当用户单击选项卡时,它会转到此解决方案。

protected void Page_Load(object sender, EventArgs e)
{

    string host = System.Configuration.ConfigurationManager.AppSettings["host"];
    string facebookClientId =
      System.Configuration.ConfigurationManager.AppSettings["FacebookClientId"];
    string RedirectURL = "http://x.y.com";
    if (Request.QueryString["redirectURL"] != null)
    {
        RedirectURL = Request.QueryString["redirectURL"].ToString();
        Session["RedirectURL"] = RedirectURL;
    }
    Response.Redirect(@"https://graph.facebook.com/oauth/authorize?client_id=" +
      facebookClientId + "&redirect_uri=http://" + host +
      @"/FBcallback.aspx&scope=publish_stream,offline_access,publish_actions");

}
4

1 回答 1

0

sandbox mode从应用程序设置中禁用。

于 2013-09-03T11:35:15.607 回答