调用 web api 时 C # 不支持的授权类型

我试图从一个 c # WPF 桌面应用程序执行一个 Post to my WebAPI。

不管我做什么,我都明白

{“ error”: “ unsupport _ Grant _ type”}

这就是我所尝试的(我已经尝试了所有我能找到的东西) :

另外,当前用于测试的 dev web api 是: http://studiodev.biz/

基础 http 客户端对象:

var client = new HttpClient()
client.BaseAddress = new Uri("http://studiodev.biz/");
client.DefaultRequestHeaders.Accept.Clear();
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("text/plain"));
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("*/*"));

以下列方式发送:

var response = await client.PostAsJsonAsync("token", "{'grant_type'='password'&'username'='username'&'password'='password'");
var response = await client.PostAsJsonAsync("token", "grant_type=password&username=username&password=password");

那次失败后,我上网搜索了一下:

LoginModel data = new LoginModel(username, password);
string json = JsonConvert.SerializeObject(data);
await client.PostAsync("token", new JsonContent(json));

同样的结果,所以我试着:

req.Content = new StringContent(json, Encoding.UTF8, "application/x-www-form-urlencoded");
await client.SendAsync(req).ContinueWith(respTask =>
{
Application.Current.Dispatcher.Invoke(new Action(() => { label.Content = respTask.Result.ToString(); }));
});

注意: 我可以用 Chrome 成功打电话。

更新 Fiddler 结果

enter image description here

有没有人可以帮我打一个成功的电话到上面的网络应用程序接口..。 请让我知道,如果我可以帮助澄清。 谢谢!

82822 次浏览

OAuthAuthorizationServerHandler的默认实现只接受表单编码(即 application/x-www-form-urlencoded) ,而不接受 JSON 编码(application/JSON)。

请求的 ContentType应该是 application/x-www-form-urlencoded,并将正文中的数据传递如下:

grant_type=password&username=Alice&password=password123

非 JSON 格式

上面的 chrome 示例之所以能够工作,是因为它没有将数据作为 JSON 传递。您只需要在获取令牌时使用它; 对于 API 的其他方法,您可以使用 JSON。

对这类问题也进行了讨论。

下面是一个工作示例,我使用 SSL 在端口43305上运行本地 Web API 应用程序,并对其发出此请求。我也把这个项目放到了 GitHub 上。 Https://github.com/casmer/webapi-getauthtoken

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
using System.Net.Http;
using System.Web;


namespace GetAccessTokenSample
{
class Program
{
private static string baseUrl = "https://localhost:44305";


static void Main(string[] args)
{


Console.WriteLine("Enter Username: ");
string username= Console.ReadLine();
Console.WriteLine("Enter Password: ");
string password = Console.ReadLine();


LoginTokenResult accessToken = GetLoginToken(username,password);
if (accessToken.AccessToken != null)
{
Console.WriteLine(accessToken);
}
else
{
Console.WriteLine("Error Occurred:{0}, {1}", accessToken.Error, accessToken.ErrorDescription);
}


}




private static LoginTokenResult GetLoginToken(string username, string password)
{


HttpClient client = new HttpClient();
client.BaseAddress = new Uri(baseUrl);
//TokenRequestViewModel tokenRequest = new TokenRequestViewModel() {
//password=userInfo.Password, username=userInfo.UserName};
HttpResponseMessage response =
client.PostAsync("Token",
new StringContent(string.Format("grant_type=password&username={0}&password={1}",
HttpUtility.UrlEncode(username),
HttpUtility.UrlEncode(password)), Encoding.UTF8,
"application/x-www-form-urlencoded")).Result;


string resultJSON = response.Content.ReadAsStringAsync().Result;
LoginTokenResult result = JsonConvert.DeserializeObject<LoginTokenResult>(resultJSON);


return result;
}


public class LoginTokenResult
{
public override string ToString()
{
return AccessToken;
}


[JsonProperty(PropertyName = "access_token")]
public string AccessToken { get; set; }


[JsonProperty(PropertyName = "error")]
public string Error { get; set; }


[JsonProperty(PropertyName = "error_description")]
public string ErrorDescription { get; set; }


}


}
}

如果您正在使用 RestSharp,您需要这样做请求:

public static U PostLogin<U>(string url, Authentication obj)
where U : new()
{
RestClient client = new RestClient();
client.BaseUrl = new Uri(host + url);
var request = new RestRequest(Method.POST);
string encodedBody = string.Format("grant_type=password&username={0}&password={1}",
obj.username,obj.password);
request.AddParameter("application/x-www-form-urlencoded", encodedBody, ParameterType.RequestBody);
request.AddParameter("Content-Type", "application/x-www-form-urlencoded", ParameterType.HttpHeader);
var response = client.Execute<U>(request);


return response.Data;


}

1)注意 URL: “ localhost: 55828/token”(而不是“ localhost: 55828/API/token”)

2)注意请求数据,它不是 json 格式的,只是没有双引号的普通数据。 “ userName = xxx@gmail.com & password = Test123 $& Grant _ type = password”

3)注意内容类型。 Content-Type: ‘ application/x-www-form-urlencode’(不是 Content-Type: ‘ application/json’)

4)当你使用 javascript 提交文章请求时,你可以使用以下方法:

$http.post("localhost:55828/token",
"userName=" + encodeURIComponent(email) +
"&password=" + encodeURIComponent(password) +
"&grant_type=password",
{headers: { 'Content-Type': 'application/x-www-form-urlencoded' }}
).success(function (data) {//...

下面是邮差的截图:

Postman Request

Postman Request Header

有相同的问题,但只解决了我的令牌 URL 的安全 HTTP。请参见 httpclient 代码示例。普通 HTTP 在服务器维护后就停止工作了

var apiUrl = "https://appdomain.com/token"
var client = new HttpClient();
client.Timeout = new TimeSpan(1, 0, 0);
var loginData = new Dictionary<string, string>
{
{"UserName", model.UserName},
{"Password", model.Password},
{"grant_type", "password"}
};
var content = new FormUrlEncodedContent(loginData);
var response = client.PostAsync(apiUrl, content).Result;

在我的情况下,我忘记了安装包 Token.JWT,所以你也需要在你的项目中安装。 Install-Package System. IdentityModel. Tokens. Jwt-Version 6.7.1

这可能是协议的原因 这是必需的 https://

Https://localhost:port/oauth/token

jQuery.ajax({


"method": "post",
"url": "https://localhost:44324/token",
**"contentType": "application/x-www-form-urlencoded",**
"data": {
"Grant_type": "password",
"Username": $('#txtEmail').val(),
"Password": $('#txtPassword').val()
}
})
.done(function (data) { console.log(data); })
.fail(function (data) { console.log(data); })


//In Global.asax.cs (MVC WebApi 2)


protected void Application_BeginRequest()


{
HttpContext.Current.Response.AddHeader("Access-Control-Allow-Origin", "*");
        

}

enter image description here