是否有人知道什么是幸福和密码流。上周是工作文件,今天不是。 我们为此库获取了my-get的更新,并添加了一些新列(Permissions,Properties,Payload和ReferenceId ets。)。
新的我们总是得到:
{
"error": "unauthorized_client",
"error_description": "This client application is not allowed to use the token endpoint."
}
我们没有改变测试中的任何内容。
所以任何想法?
答案 0 :(得分:1)
从RC2开始,必须授予应用程序使用端点或流的权限。
有关更新应用的详细说明,请访问:https://openiddict.github.io/openiddict-documentation/guide/migration.html。
答案 1 :(得分:0)
请参阅官方documentaion:
如果您不关心权限(例如,因为您没有第三方客户端),则可以禁用它们:
// Register the OpenIddict server handler.
.AddServer(options =>
{
options.IgnoreEndpointPermissions()
.IgnoreGrantTypePermissions()
.IgnoreScopePermissions();
});
它解决了我的问题。