- 浏览: 4071 次
最新评论
文章列表
IP查询接口(www.haoservice.com/docs/28)
Using System.Text;
using System;
using System.Net;
namespace IP
{
class Program
{
static void Main(string[] args)
{
string key = "************************";
string ip = "168.183.151.112" ...
航班查询接口
using System;
using System.Text;
using System.Net;
namespace plane
{
class Program
{
static void Main(string[] args)
{
string name="CA5901";
string key = "**********************";//申请的key值
string url = "http:/ ...
天气查询接口
根据城市名(IP)查询天气
演示示例代码:
using System;
using System.Text;
using System.Net;
namespace tianqi
{
class Program
{
static void Main(string[] args)
{
string key = "*********************";//申请的key值
string cityname = "北京";//输入想要查询的城市名
...
火车票查询接口
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.S ...
天气查询接口演示代码:
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.Scri ...
公交路线查询有很多网站都作了接口api,我使用的是haoservice的接口,需要您申请key值
haoservice提供的有公交站点的查询,公交线路的查询,还有公交路线的规划.
1.公交站点查询,该接口根据关键字查询周边公交站点 .
1.1.形式:
http://apis.haoservice.com/lifeservice/busline/stopname
例如:
http://apis.haoservice.com/lifeservice/busline/stopname?city=0512&keywords=生物纳米园西&key=您申请的APPKEY
1.2参数说明:
名 ...