ids4默认自带的api接口/api/connect/token
调用这个接口的时候,需要在body里面的
x-www-form-urlencoded模式下写
{
grant_type: "password", ----这里我使用的是密码模式
scope: " 你项目的作用域 offline_access",
username: "你的密码",
password: "你的密码",
client_id: "admin",
client_secret: "123456"
};
要想获得refresh_token刷新令牌token,必须在scope里加一个 offline_access。
这样你就获取刷新令牌了
手机扫一扫
移动阅读更方便
你可能感兴趣的文章