8

我正在使用以下代码来检索 facebook accessToken

string url = "https://graph.facebook.com/oauth/access_token?" +
                         "client_id={0}" +
                         "&redirect_uri={1}" +
                         "&client_secret={2}" +
                         "&code={3}";
            url = string.Format(url, clientId, redirectUri.EncodeUrl(), clientSecret, code);
            //Create a webrequest to perform the request against the Uri
            WebRequest request = WebRequest.Create(url);
            try
            {
                //read out the response as a utf-8 encoding and parse out the access_token
                using (WebResponse response = request.GetResponse())
                {
                    using (Stream stream = response.GetResponseStream())
                    {
                        //string urlRedirects = response.ResponseUri.ToString();
                        Encoding encode = Encoding.GetEncoding("utf-8");
                        if (stream != null)
                        {
                            StreamReader streamReader = new StreamReader(stream, encode);
                            string accessToken = streamReader.ReadToEnd().Replace("access_token=", "");
                            streamReader.Close();
                            response.Close();
                            return accessToken;
                        }
                    }
                }
            }
            catch
            {
                return null;
            }

但是我不断收到这个模棱两可的错误信息

{
"error": {
"message": "Error validating verification code.",
"type": "OAuthException",
"code": 100
}
}

我检查了代码 100“无效参数”对我来说根本没有什么意义。

有人遇到过类似的问题吗?

4

3 回答 3

4
  1. 检查您是否在 url 中添加了正确的代码 例如

    http://www.xyz.com/?code=AQC399oXame3UKmoAMYnqkZOEXPDNa8ZUFEY9sc6I4YNQnNT-ZgHzpMNnQVZrCUBZVqJRIB1QrXC5xW58_8MNIgQol_PaQvYssUM8OiKjSY5aoqGLBMuCeeHsSqP_mRTd1xiK0iretZcXwMm_27lFYrWFw345Mxod_lfJuB8zI13E8wJUQiArXW_ZlGLNcyxh20#_=_
    

代码必须是

    code = AQC399oXame3UKmoAMYnqkZOEXPDNa8ZUFEY9sc6I4YNQnNT-ZgHzpMNnQVZrCUBZVqJRIB1QrXC5xW58_8MNIgQol_PaQvYssUM8OiKjSY5aoqGLBMuCeeHsSqP_mRTd1xiK0iretZcXwMm_27lFYrWFw345Mxod_lfJuB8zI13E8wJUQiArXW_ZlGLNcyxh20

代码最后不应包含以下内容

    #_=_ 

如果以上没有解决问题


2.redirect_uri 必须以 / 结尾

redirect_uri=http://www.xyz.com/

以下给出了一些上述错误

redirect_uri=http://www.xyz.com


3. 还要确保 Facebook 上的 应用程序使用 Facebook 登录的网站设置为相同的地址,例如http://www.xyz.com/

于 2012-05-30T09:58:21.220 回答
1

您需要将用户发送到 Facebook 登录页面以获得有效的code. 然后应该使用该代码access_token为用户获取。

遵循身份验证指南

于 2012-05-29T15:56:39.073 回答
1

当我的应用程序 ID 和密码错误(我搞砸了开发和生产 id-s 和密码)时,我也收到了错误消息 400。

修复它们(还要注意正确的主机)为我解决了这个问题。

于 2016-01-11T15:59:02.397 回答