【发布时间】:2017-09-30 03:22:08
【问题描述】:
我想使用 MS graph api,我有 CODE,当我发布请求时,我需要交换访问令牌的代码,就像在 docs 中一样,我得到了这个答案
{
"token_type": "Bearer",
"scope": "mail.read mail.send user.read user.read.all",
"expires_in": 3599,
"ext_expires_in": 0,
"access_token": "blah blah blah ..... §§&&##"
}
这个令牌将在 1 小时后过期,我发现,我下次需要 refresh_token 来扩展令牌,但我没有得到任何 access_token 的响应
有什么办法吗?
谢谢
【问题讨论】:
标签: rest access-token extend microsoft-graph-api refresh-token