route.php 3.2 KB

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