时间:2019-05-03 来源:小程序工厂
https://developers.weixin.qq.com/miniprogram/dev/api/getAccessToken.html
请求地址
GET https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET请求参数
属性类型默认值必填说明最低版本
grant_typestring
是填写 client_credential
appidstring
是微信小程序唯一凭证,即 AppID,可在「微信公众平台 - 设置 - 开发设置」页中获得。(需要已经成为开发者,且帐号没有异常状态)
secretstring
是微信小程序唯一凭证密钥,即 AppSecret,获取方式同 appid
返回值
Object
返回的 JSON 数据包
属性类型说明最低版本
access_tokenstring获取到的凭证
expires_innumber凭证有效时间,单位:秒。目前是7200秒之内的值。
errcodenumber错误码
errmsgstring错误信息
谢谢