WSO2 api manager - 刷新令牌请求格式

时间:2015-11-05 16:46:14

标签: wso2 wso2-am

从WSO2 api管理器检索访问令牌后,需要使用刷新令牌获取新的访问令牌?

这是否记录在任何地方?我有一次打猎但没有运气。

由于

2 个答案:

答案 0 :(得分:1)

样本卷曲请求格式可以如下列出。

curl -k -d "grant_type=refresh_token&refresh_token=<refreshtoken>&scope=PRODUCTION" -H "Authorization: Basic <Base64 encoded consumer secret and key seperated by semicolan>, Content-Type: application/x-www-form-urlencoded" https://localhost:8243/token

可以在文档中的续订访问令牌部分找到更多信息。

[1] https://docs.wso2.com/display/AM190/Token+API

答案 1 :(得分:1)

样本卷曲请求应如下所示

curl -k -d "grant_type=refresh_token&refresh_token=refreshtoken>&scope=PRODUCTION" -H "Authorization: Basic "<Base64 encoded consumer secret and key seperated by semicolan>" -H "Content-Type: application/x-www-form-urlencoded" https://localhost:8243/token