package com.stylefeng.guns.modular.system.controller.util;
|
|
public class Constant {
|
|
/**
|
* OCR识别地址
|
*/
|
public static final String OCR_URL = "https://api.weixin.qq.com/cv/ocr/driving?type=MODE&access_token=ACCESS_TOKEN";
|
|
/**
|
* 请求参数
|
* 属性 类型 默认值 必填 说明
|
* grant_type string 是 填写 client_credential
|
* appid string 是 小程序唯一凭证,即 AppID,可在「微信公众平台 - 设置 - 开发设置」页中获得。(需要已经成为开发者,且帐号没有异常状态)
|
* secret string 是 小程序唯一凭证密钥,即 AppSecret,获取方式同 appid
|
* 返回值
|
* Object
|
* 返回的 JSON 数据包
|
* <p>
|
* 属性 类型 说明
|
* access_token string 获取到的凭证
|
* expires_in number 凭证有效时间,单位:秒。目前是7200秒之内的值。
|
* errcode number 错误码
|
* errmsg string 错误信息
|
*/
|
public static String ACCESS_TOKEN_URL = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={0}&secret={1}";
|
|
}
|