码迷,mamicode.com
首页 > 其他好文 > 详细

彩票查询年接口返回示例

时间:2014-10-17 13:31:03      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:http   io   os   ar   sp   2014   on   cti   代码   


using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Net.Security;

using System.Security.Cryptography.X509Certificates;

using System.Net;

using System.IO;

using System.IO.Compression;

using System.Text.RegularExpressions;

using System.Web.Script.Serialization;

namespace caipiao

{

class Program

{

static void Main(string[] args)

{

string key = "****************************";//申请的key值

int id=3;

string url = "http://apis.haoservice.com/lifeservice/lottery/query?id="+id+"&key="+key;

WebClient wc = new WebClient();

wc.Encoding = Encoding.UTF8;

string str = wc.DownloadString(url);

Console.WriteLine(str);

Console.ReadKey();

}

}

}

 

彩票查询年接口返回示例

接口信息

URL:http://apis.haoservice.com/lifeservice/lottery/query
支持格式:json

http请求方式:GET

DEMO:http://apis.haoservice.com/lifeservice/lottery/query?id=3&key=您申请的APPKEY
返回结果:
{
"reason":"Success",
"error_code":0,
"result":{
"lottery":"福彩3D", /*彩票类型*/
"lottery_no":"2014054", /*期号*/
"lottery_time":"2014-03-03", /*开奖日期*/
"lottery_nums":"2 5 7 ", /*开奖号码*/
"lottery_sales":"53,297,148" /*本期销量*/
}
}

 

备注:

先在网页 (http://www.haoservice.com/docs/33)上申请key值,填入参数.

若有错误,请参照一下代码表

错误代码表:

返回码 说明

0 成功

10001 错误的请求KEY

10002 该KEY无请求权限

10003 KEY过期

10004 错误的SDK KEY

10005 应用未审核超时,请提交认证

10007 未知的请求源,(服务器没有获取到IP地址)

10008 被禁止的IP

10009 被禁止的KEY

10011 当前IP请求超过限制

10012 当前Key请求超过限制

10013 测试KEY超过请求限制

10020 接口维护

10021 接口停用

10022 appKey按需剩余请求次数为零

10023 请求IP无效

10024 网络错误

10025 没有查询到结果

彩票查询年接口返回示例

标签:http   io   os   ar   sp   2014   on   cti   代码   

原文地址:http://www.cnblogs.com/wlzjwl/p/4030753.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!