一、开发者发起授权请求
3、授权成功后,开发者在「应用后台-授权管理」页面,可查看到授权状态的更新
4、开发者也可在「应用后台-授权管理」页面,新增对自有店铺授权请求
三、获取access_token
https://openapi-fxg.jinritemai.com/token/create?app_key=your_app_key&method=token.create¶m_json={"code":"","grant_type":"authorization_self","shop_id":"12312312"}×tamp=2021-07-0210:47:32&v=2&sign=your_sign_here
https://openapi-fxg.jinritemai.com/oauth2/access_token?app_id=KEY&app_secret=SECRET&grant_type=authorization_self&shop_id=SHOPID
在 access_token 过期前1h之前,调用该接口,会返回原来的 access_token 和 refresh_token,并且二者有效期不变;
在 access_token 过期前1h之内,调用该接口,会返回新的 access_token 和 refresh_token,但是原来的 access_token 和 refresh_token 继续有效一个小时;
在 access_token 过期后,调用该接口,会返回新的 acces_token 和 refresh_token,同时原来的 acces_token 和 refresh_token 失效;
/token/create接口,"grant_type"值为"authorization_self"时,不需要code,所以"code"只需传空值即可;
因为自用型应用支持多店铺授权,所以请求入参中需要传shop_id,才能返回对应店铺的access_token信息;如不传shop_id,则默认返回最早授权成功店铺的access_token信息
若要获取测试店铺对应的access_token,则入参需要额外传入"test_shop":"1";
2、响应参数
3、响应示例
四、D新token
https://openapi-fxg.jinritemai.com/token/refresh?app_key=your_app_key&method=token.refresh¶m_json={"grant_type":"refresh_token","refresh_token":"2ecd9731-537f-436f-84ea-ecf39e8646f8"}×tamp=2021-07-0216:35:13&v=2&sign=your_sign_here
https://openapi-fxg.jinritemai.com/oauth2/refresh_token?app_id=APPID&app_secret=SECRET&grant_type=refresh_token&refresh_token=REFRESH_TOKEN
3、响应示例
留言与评论(共有 条评论) |