当前位置:编程学习 > C#/ASP.NET >>

关于新浪微博登陆的400错误

开发页面,集成新浪微博登陆,但是在授权后,获取access_token的时候,老是返回400错误。代码如下:

string para = "grant_type=authorization_code&client_id=" + AppKey + "&client_secret=" + AppSercet + "&code=" + code + "&state=" + server;
                para += "&redirect_uri=" + HttpUtility.UrlEncode(CallbackUrl) + "&rnd=" + DateTime.Now.Second;
                if (method == "POST")
                {
                    if (string.IsNullOrEmpty(wc.Headers["Content-Type"]))
                    {
                        wc.Headers.Add("Content-Type", "application/x-www-form-urlencoded");
                    }
                    result = wc.UploadString(TokenUrl, method, para);
                }

有谁能帮忙看看啊!!!谢谢 --------------------编程问答-------------------- 除 --------------------编程问答-------------------- 多半是因为postdata有问题。
补充:.NET技术 ,  ASP.NET
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,