复制链接

扫一扫

二次开发 自定义客户端API接口

BS系统功能不足怎么办,或者需要关联其他的查询进行返回软件客户端!可以使用自己开放自定义接口进行解决!
  1. 系统API接口路径:/include/applibapi/api/Default


案例一:AppEn.Customized.lg.php

接口命名:AppEn.chong.lg.php API名称=chong.lg

  1. //演示载入自定义文件
  2. //include (plug_get_bsphp_dir().'/Plug/Customized/icc.php');
  3. //演示需要登录操作
  4. $uid=plug_get_session_value('USER_UID');//获取当前登录UID
  5. $info=plug_set_data('info');//接收传递的参数
  6. if($uid<=0){
  7. plug_PrInfo('请登录在操作');
  8. }
  9. //获取传递参数
  10. $aaaa = plug_set_data('type');
  11. //读取自定义数据库
  12. $sql = "SELECT * FROM `plug_customized_info` WHERE `i_sdate` = 0 order by rand() LIMIT 1";
  13. $array = plug_query_array($sql);
  14. //调用映入文件函数
  15. $get_icc = get_icc( $array['i_pp'], $array['i_xh'], $array['i_azbb'], $array['i_sdk'],$aaaa);
  16. $outinfo = '';
  17. foreach($array as $v){
  18. $outinfo.= $v.'||';
  19. }
  20. //接口功能演示读软件信息
  21. $sql = "SELECT * FROM `bs_php_appinfo` WHERE `app_daihao` = {$_GET['appid']} LIMIT 1";
  22. $array_app = plug_query_array($sql);
  23. $key = $array_app['app_miaoshu'];
  24. //api接口专用输出,输出会自动集成加密和输出格式进行出内容给客户端
  25. plug_PrInfo('okinfo|'.$encode.'|'.$key.'|type='.$aaaa);

API=Customized.lg
传递参数1=type
参数参数2=data

POST数据包
api=Customized.lg&date=2018-12-21-13:14:12&mutualkey=xxxx&appsafecode=12345&type=1&data=2&code…..


案例二

接口命名:AppEn.hilo.in.php API名称=hilo.in
  1. plug_PrInfo("我是bsphp插件");

访问请求数据包
api=hilo.in&date=2018-12-21-13:14:12&md5=&mutualkey=xxxxxxxx&….


案例三

https://www.bsphp.com/product-kztzkj.html


案例四

https://www.bsphp.com/product-wjltio.html