首页 > PHP资讯 > 工具库 > 微信公众平台消息接口开发(27)彩票查询

微信公众平台消息接口开发(27)彩票查询

工具库

一、获取数据

目前很多网站都提供彩票信息查询,所以取得彩票数据是件很容易的事。
方倍工作室开发出彩票查询接口 API,目前已开通'双色球','3D','七乐彩','大乐透','七星彩','排列3','排列5','胜负彩','六场半全场','四场进球' 10种数据,每日同步更新

使用方式为直接在URL中提交彩票名称即可,名称需要先做urlencode
调用url方法:以下是调用双色球方法

http://api2.sinaapp.com/search/lottery/?appkey=0020130430&appsecert=fa6095e113cd28fd&reqtype=text&keyword=%e5%8f%8c%e8%89%b2%e7%90%83

返回格式如下:(返回中自带换行n操作,不用自己再添加)

{    "errcode": 0,    "msgtype": "text",    "text": {        "content": "双色球n第2013041期n开奖时间 2013-04-11n开奖号码 02-10-12-17-23-24-05"    }}

一个完整的请求类似如下:

//以发送 “彩票双色球” 为例 $lotteryArray = array('双色球','3D','七乐彩','大乐透','七星彩','排列3','排列5','胜负彩','六场半全场','四场进球'); if(substr($keyword,0,6) == "彩票" && strlen($keyword) > 6){ $content = trim(substr($keyword, 6, strlen($keyword))); if (in_array($content, $lotteryArray)) { $apihost = "http://api2.sinaapp.com/"; $apimethod = "search/lottery/?"; $apiparams = array('appkey'=>"0020130430", 'appsecert'=>"fa6095e113cd28fd", 'reqtype'=>"text"); $apikeyword = "&keyword=".urlencode($content); $apicallurl = $apihost.$apimethod.http_build_query($apiparams).$apikeyword; $apiJsonInfo = file_get_contents($apicallurl); $apiInfo = json_decode($apiJsonInfo, true); $contentStr = $apiInfo['text']['content'];  } else {    $contentStr = "抱歉,暂不支持该彩种!";  } return $contentStr;}


三,效果演示
  


四、试用账号

工具库

本文由欣才IT学院整理发布,未经许可,禁止转载。
支持34不支持0