如何使用 Spring 授权服务器添加范围的描述?
How to add a Scope's description with Spring Authorization Server?
在samples/custom-consent-authorizationserver/src/main/resources/templates/consent.html
我在下面找到代码
<p class="text-primary" th:text="${scope.description}"></p>
但是当我注册客户端时,我可以添加一个范围的名称,就像这样.scope("userinfo.read")
如何添加此范围的描述,例如 read user's info
作为一个框架,Spring 授权服务器不提供 high-level 这样开箱即用的功能,但您可以将它们设计到您自己的应用程序中。这就是您链接到的自定义同意示例通过提供自定义同意页面所做的。
如果您签出 controller for that page, you will see that the descriptions are provided by custom code. See these lines。
在samples/custom-consent-authorizationserver/src/main/resources/templates/consent.html 我在下面找到代码
<p class="text-primary" th:text="${scope.description}"></p>
但是当我注册客户端时,我可以添加一个范围的名称,就像这样.scope("userinfo.read")
如何添加此范围的描述,例如 read user's info
作为一个框架,Spring 授权服务器不提供 high-level 这样开箱即用的功能,但您可以将它们设计到您自己的应用程序中。这就是您链接到的自定义同意示例通过提供自定义同意页面所做的。
如果您签出 controller for that page, you will see that the descriptions are provided by custom code. See these lines。