从WSO2 api管理器检索访问令牌后,需要使用刷新令牌获取新的访问令牌?
这是否记录在任何地方?我有一次打猎但没有运气。
由于
答案 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 :(得分: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