作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试从对 azure 函数的请求获取 access_token 及其声明。
不记名 token 已在 header 中设置,但我无法获得使用该函数的 FunctionsStartup 的声明。
是否可以在 azure 函数中获取声明?如果是的话,有人可以提供一个例子吗?
我一整天都在尝试,也发现但找不到明确的例子。
提前致谢!
编辑:
当我在函数的 FunctionsStartup 中添加授权时,出现下一个错误。 builder.Services.AddAuthorization()
我已经通过 JwtBearer 配置了身份验证:services.AddAuthentication("Bearer").AddJwtBearer((Action)
最佳答案
您可以通过使用 Azure 函数的声明原则绑定(bind)来执行此操作。
using System.Net;
using Microsoft.AspNetCore.Mvc;
using System.Security.Claims;
public static IActionResult Run(HttpRequest req, ClaimsPrincipal principal, ILogger log)
{
// ...
return new OkResult();
}
参见:http://sadomovalex.blogspot.com/2018/12/get-current-users-principal-in-azure.html
关于azure - 如何在azure函数中获取AccessToken和声明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61466012/
我是一名优秀的程序员,十分优秀!