如何通过方法(而非api)通过identityserver4获取访问令牌?

时间:2018-11-16 04:56:46

标签: c# asp.net oauth access-token identityserver4

您可以通过请求令牌来获得令牌(如下例所示)。

但是,如何从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

1 个答案:

答案 0 :(得分:3)

是的,您可以使用IssueJwtAsync类中的IssueClientJwtAsyncIdentityServerTools方法来做到这一点。

根据documentation