能够从Azure AD请求访问令牌,但也需要刷新令牌

时间:2015-04-06 14:25:06

标签: asp.net azure oauth oauth-2.0 access-token

我可以通过此方法使用POST到Azure AD获取本机应用程序的访问令牌(来自官方MS指南):https://msdn.microsoft.com/en-us/library/azure/dn645543.aspx

根据这个例子,如果我将这样的请求发送到POST网址:

Content-Type: application/x-www-form-urlencoded
grant_type=client_credentials&client_id=[id]&client_secret=[secret]&resource=[resourceURI]

然后根据文档,我只获得以下字段(下面的完整JSON响应):

{
    "token_type": "Bearer",
    "expires_in": "3599",
    "expires_on": "1428372149",
    "not_before": "1428368249",
    "resource": "http://myresource",
    "access_token": "asdfghjkl"
}

我想要的也是刷新令牌。有没有办法改变获得一个的请求?

0 个答案:

没有答案