简要描述
- 获取授权
接口版本
版本号 | 制定人 | 制定日期 | 修订日期 |
---|---|---|---|
V 1.0 | xxxx-xx-xx |
请求URL:
请求方式:
- POST
请求头:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
Content-Type | 是 | string | 请求类型: application/x-www-form-urlencoded |
请求参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
timestamp | 是 | string | 当前时间戳 |
appid | 是 | string | 开发者appid |
signature | 是 | string | 签名 |
说明:
所传时间戳与服务器时间120秒内有效,否则提示“请求超时”,您可以通过"https://api.jzchengxin.com/server_view"查看服务器时间;
签名生成规则 md5( appid + appsecret + 当前时间戳 );
返回示例:
正确时返回:
{
"code": 200,
"msg": "授权请求成功!",
"data": {
"access_token": "37a3b11e911a888c320ef451a3952a37",
"expires_in": 7200
}
}
说明:access_token有效期为2小时;
错误时返回一:
{
"code": 400,
"msg": "授权请求失败,请检查传参是否正确!",
"data": []
}
说明:出现此错误时,请检查appid和appsecret是否正确。
错误时返回二:
{
"code": 400,
"msg": "appsecret长度不符合要求 32",
"data": []
}
说明:出现此错误时,appsecret输入必须为32位。