我正在尝试将控制台应用程序授权给使用 oAuth 2.0 的 API。我试过 DotNetOpenAuth 没有成功。
第一步是获取授权码,这就是我所拥有的,但我找不到继续执行步骤 2 的授权码(使用预定义的授权码进行授权,使用用户 ID 和用户密码)。我使用了文档 https://sandbox-connect.spotware.com/draftref/GetStartAccounts.html#accounts中的以下授权标头?
在响应中我没有得到任何带有身份验证码的标题,我该如何解决这个问题?
string sAuthUri = "https://sandbox-connect.spotware.com/oauth/v2/auth";
string postData ="access_type=online&approval_prompt=auto&client_id=7_5az7pj935owsss8kgokcco84wc8osk0g0gksow0ow4s4ocwwgc&redirect_uri=http%3A%2F%2Fwww.spotware.com%2F&response_type=code&scope=accounts";
string sTokenUri = "https://sandbox-connect.spotware.com/oauth/v2/token";
var webRequest = (HttpWebRequest)WebRequest.Create(sAuthUri);
webRequest.Method = "POST";
webRequest.ContentType = "application/x-www-form-urlencoded";
try
{
using (Stream s = webRequest.GetRequestStream())
{
using (StreamWriter sw = new StreamWriter(s))
sw.Write(postData.ToString());
}
using (WebResponse webResponse = webRequest.GetResponse())
{
using (var reader = new StreamReader(webResponse.GetResponseStream()))
{
response = reader.ReadToEnd();
}
}
var return = response;
}
catch (Exception ex)
{
}