如果我有一个方法将一些数据发送到端点,我知道我应该使用一个承载令牌来验证这个请求的头部发送的呼叫。
假设我从端点发送/接收数据的方法如下所示:
public async Task<string> PostGetAsync()
{
var uri = new Uri("https://localhost:44322/endpoint");
using (var client = new HttpClient())
{
var pairs = new List<KeyValuePair<string, string>>
{
new KeyValuePair<string, string>("Key", "Value")
};
var content = new FormUrlEncodedContent(pairs);
var response = await client.PostAsync(uri, content);
if (response.StatusCode != HttpStatusCode.OK)
{
return "Error posting KeyValue";
}
string responseString = response.Content.ReadAsStringAsync().Result;
JArray json = JArray.Parse(responseString);
try
{
var returnedJson = json[returnedData];
return returnedJson.ToString();
}
catch (Exception e)
{
return "Index is out of bounds";
}
}
}
当该端点被调用时运行的方法:
public async Task<JsonResult> endpoint()
{
List<Example> items = new List<Example>();
NameValueCollection nvc = Request.Form;
string keyString = nvc["Key"];
try
{
items = await GetService.GetList(keyString);
}
catch (ServiceException se)
{
}
return Json(items, JsonRequestBehavior.AllowGet);
}
我如何:
我无法找到任何适合初学者的友好文档。
答案 0 :(得分:3)
发送承载令牌就像在表单请求中添加HTTP标头一样简单:Authorization: Bearer YOURTOKEN
。你可以在C#中这样做:
using (var client = new HttpClient())
{
client.DefaultRequestHeaders.Authorization =
new AuthenticationHeaderValue("Bearer", yourTokenString);
// .. rest of your code
对于服务器端点,您很不清楚如何验证令牌。你提到了Azure KeyVault,但是没有说明你使用它的目的。
通常,服务器通过检查其签名来验证传入令牌。这项检查需要知道一个秘密。 Azure KeyVault是您存储该秘密的地方。
通常,您使用令牌验证配置服务器框架一次(而不是每个端点)。然后,您只需指出哪些端点需要令牌验证。
整个过程中有许多指南。这是一对夫妇:
https://blogs.msdn.microsoft.com/webdev/2016/10/27/bearer-token-authentication-in-asp-net-core/ https://goblincoding.com/2016/07/03/issuing-and-authenticating-jwt-tokens-in-asp-net-core-webapi-part-i/
如果这还不够,那么您应该发布有关您的用例和您知道的更多具体信息。
答案 1 :(得分:1)
如果您使用的是.Net Core,请查看以下库: