getAccessToken

获取小程序 access_token

请求地址

  1. GET https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET

参数

string grant_type

填写 client_credential

string appid

小程序 appId

string secret

小程序 appSecret

返回值

Object

返回的 JSON 数据包

属性 类型 说明 支持版本
access_token string 获取到的凭证
expires_in number 凭证有效时间,单位:秒
errcode number 错误码
errmsg string 错误信息

errcode 的合法值

说明
-1 系统繁忙,此时请开发者稍候再试
0 请求成功
40001 AppSecret错误或者AppSecret不属于这个小程序,请开发者确认AppSecret的正确性
40002 请确保grant_type字段值为client_credential
40164 调用接口的IP地址不在白名单中,请在接口IP白名单中进行设置

原文: https://developers.weixin.qq.com/minigame/dev/api/open-api/access-token/getAccessToken.html