多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# getAccessToken ### getAccessToken 获取小程序 [access\_token](https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421140183) #### 请求地址 ``` <pre class="prettyprint"><ol class="linenums"><li class="l"><code class="pcalibre9 pcalibre8 pcalibre7"><span class="pln">GET https</span><span class="pun">:</span><span class="com">//api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET</span></code></li></ol> ``` #### 参数 ##### string grant\_type 填写 client\_credential ##### string appid 小程序 appId ##### string secret 小程序 appSecret #### 返回值 ##### Object 返回的 JSON 数据包 属性类型说明支持版本access\_tokenstring获取到的凭证expires\_innumber凭证有效时间,单位:秒errcodenumber错误码errmsgstring错误信息**errcode 的合法值** 值说明-1系统繁忙,此时请开发者稍候再试0请求成功40001AppSecret错误或者AppSecret不属于这个小程序,请开发者确认AppSecret的正确性40002请确保grant\_type字段值为client\_credential40164调用接口的IP地址不在白名单中,请在接口IP白名单中进行设置> 原文: <https://developers.weixin.qq.com/minigame/dev/api/open-api/access-token/getAccessToken.html>