淘宝access_token令牌获取.net
warning:
这篇文章距离上次修改已过566天,其中的内容可能已经有所变动。
1.client_id即appKey
https://oauth.taobao.com/authorize?response_type=code&client_id=21050505&redirect_uri=urn:ietf:wg:oauth:2.0:oob
这里返回的授权码在2中只能用一次,非常环保!但你二次用时,发现返回的是400报错,莫名奇妙,我还傻傻地以为我提交的格式有问题呢。
2.
string url = "https://oauth.taobao.com/token";
string pData = string.Format("code={0}&grant_type=authorization_code&client_id={1}&client_secret={2}
&redirect_uri=urn:ietf:wg:oauth:2.0:oob"
, "UHOTfTb厅cHpM4DiycD20195", "21dd505", "49d0aedddd8e33b7141d8e");
按照淘宝的oauth2.0指导(基于OAuth2.0的登录验证授权方式介绍),完全可以陷进去而拨不出来,每次都是400报错,具体什么错完全不知道,这是说明还是考验?
评论已关闭