您可以通过请求令牌来获得令牌(如下例所示)。
但是,如何从Identityserver类中获取(客户端凭据)访问令牌(不通过http POST Web服务api请求它)?是否可以使用identityserver4方法获取访问令牌?
http://docs.identityserver.io/en/release/endpoints/token.html
POST /connect/token
client_id=client1&
client_secret=secret&
grant_type=authorization_code&
code=hdh922&
redirect_uri=https://myapp.com/callback
答案 0 :(得分:3)
是的,您可以使用IssueJwtAsync
类中的IssueClientJwtAsync
或IdentityServerTools
方法来做到这一点。