You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
793 B
34 lines
793 B
4 weeks ago
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace App\Dictionary\WeChat\MiniProgram;
|
||
|
|
||
|
/**
|
||
|
* 微信小程序Api列表
|
||
|
*
|
||
|
* @see https://developers.weixin.qq.com/miniprogram/dev/framework/
|
||
|
*/
|
||
|
enum OpenApi: string
|
||
|
{
|
||
|
// 开始开发
|
||
|
case GET_ACCESS_TOKEN = '/cgi-bin/token';
|
||
|
case GET_STABLE_ACCESS_TOKEN = '/cgi-bin/stable_token';
|
||
|
|
||
|
// 小程序登录
|
||
|
case GET_CODE_TO_SESSION = '/sns/jscode2session';
|
||
|
|
||
|
case CHECK_SESSION_KEY = '/wxa/checksession';
|
||
|
|
||
|
case RESET_USER_SESSION_KEY = '/wxa/resetusersessionkey';
|
||
|
|
||
|
// 用户信息
|
||
|
case GET_PLUGIN_OPEN_PID = '/wxa/getpluginopenpid';
|
||
|
|
||
|
case CHECK_ENCRYPTED_DATA = '/wxa/business/checkencryptedmsg';
|
||
|
|
||
|
case GET_PAID_UNION_ID = '/wxa/getpaidunionid';
|
||
|
|
||
|
case GET_PHONE_NUMBER = '/wxa/business/getuserphonenumber';
|
||
|
}
|