12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- /**
- * route.php UTF-8
- * SDK 接口路由
- *
- * @date : 2018/3/17 14:28
- *
- * @license 这不是一个自由软件,未经授权不许任何使用和传播。
- * @author : wuyonghong <wyh@apposdk.com>
- * @version : HUOSDK 8.0
- */
- return [
- /* 实名认证页 */
- 'wap/identify/msg' => 'float/Identify/getMsg', /* 实名认证提示信息 */
- 'wap/identify/index' => 'float/Identify/index', /* 实名认证页 */
- 'wap/identify/set' => 'float/Identify/save', /* API-实名认证-设置 */
- ':version/wap/identify/index' => 'float/Identify/index', /* 实名认证页 */
- ':version/wap/identify/set' => 'float/Identify/save', /* API-实名认证-设置 */
- 'wap/identify/bind/mobile' => 'float/Identify/bindMobile', /* API-实名认证-绑定手机 */
- 'wap/identify/sms/send' => 'float/Identify/smsSend', /* API-实名认证-发送短信 */
- 'wap/identify/bind/post' => 'float/Identify/bindPost', /* API-实名认证-绑定手机提交 */
- /* 浮点 */
- 'float/user/detail' => 'float/Member/index', /* H5浮点获取用户信息 */
- 'float/gift/list' => 'float/Gift/index', /* H5浮点礼包首页 */
- 'float/user/gift/add' => 'float/Gift/save', /* H5浮点领取礼包 */
- 'float/news/list' => 'float/News/index', /* H5浮点资讯列表 */
- 'float/news/detail' => 'float/News/read', /* H5浮点资讯详情 */
- 'float/game/list' => 'float/Game/index', /* H5浮点游戏列表 */
- 'float/help/index' => 'float/Help/index', /* H5浮点-客服 */
- /* Modified by ouzhongfu BEGIN 2020/4/3 ISSUES:11805 浮点修改新增接口 */
- 'user/address/list' => 'float/Member/address', /* 地址 */
- 'user/ali/info' => 'float/Member/getAliInfo', /* 获取玩家支付宝信息 */
- 'richtext/:key' => 'float/RichText/index', /* h5wap 富文本说明 */
- /* h5wap绑定手机 */
- 'wap/user/bind/mobile' => 'float/Bind/bindMobile', /* h5wap绑定手机 */
- 'wap/sms/send' => 'float/Bind/smsSend', /*H5WAP-发送短信 */
- 'wap/sms/checkold' => 'float/Bind/verifyOldMobile', /* 校验原有手机 */
- 'wap/sms/smsSend' => 'float/Bind/smsSend', /* H5WAP-发送短信 */
- 'wap/mobile/bind' => 'float/Bind/bindPost', /* 绑定手机 */
- 'user/address/add/post' => 'float/Member/addAddressPost', /* 添加地址 */
- 'user/address/edit/post' => 'float/Member/editAddressPost', /* 修改地址 */
- 'user/address/detail' => 'float/Member/getAddressDetail', /* 地址详情 */
- 'user/address/del' => 'float/Member/deleteAddress', /* 删除地址 */
- /* 地址 */
- 'wap/address/list' => 'float/Address/index', /* 地址列表 */
- /* 绑定支付宝 */
- 'user/bind/alipay' => 'float/Member/bindAlipay', /* 绑定支付宝 */
- 'user/bind/alipay/post' => 'float/Member/bindAlipayPost', /* 绑定支付宝提交 */
- 'user/avatar/update' => 'float/Member/updateAvatar', /* 修改用户头像 */
- 'user/asset/upload' => 'float/Member/upload', /* 上传文件 */
- /* END 2020/4/3 ISSUES:11805 */
- ];
|