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

黄金数据查询

时间:2014-10-31 11:51:23      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:style   http   os   ar   sp   数据   on   代码   bs   

黄金数据查询演示示例

 

using System;

using System.Text;

using System.Net;

namespace gold

{

    class Program

    {

        static void Main(string[] args)

        {

          

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

            string url = "http://apis.haoservice.com/lifeservice/gold/shgold?key="+ key;

            WebClient wc = new WebClient();

            wc.Encoding = Encoding.UTF8;

            string str = wc.DownloadString(url);

            Console.WriteLine(str);

            Console.ReadKey();

        }

    }

}

 

URLhttp://apis.haoservice.com/lifeservice/gold/shgold

支持格式:json

http请求方式:GET POST

DEMOhttp://apis.haoservice.com/lifeservice/gold/shgold?key=您申请的APPKEY

返回示例:

{

"error_code":"0",

"reason":"Success!",

"result":[

{

"1":{

"variety":"Ag(T+D)", /*品种*/

"latestpri":"6585.00", /*最新价*/

"openpri":"6712.00", /*开盘价*/

"maxpri":"6721.00", /*最高价*/

"minpri":"6581.00", /*最低价*/

"limit":"-1.98%", /*涨跌幅*/

"yespri":"6718.00", /*昨收价*/

"totalvol":"1564524.0000", /*总成交量*/

"time":"2012-12-19 15:29:59" /*更新时间*/

},

...... 

"7":{

"variety":"Au99.99",

"latestpri":"336.77",

"openpri":"342.00",

"maxpri":"342.00",

"minpri":"336.40",

"limit":"-1.53%",

"yespri":"342.00",

"totalvol":"6936.2000",

"time":"2012-12-19 15:29:53"

}

......

}

]

}

备注:

黄金数据查询,只用申请key值即可;

若出现错误,请查看该网页(http://www.haoservice.com/docs/22)上的代码表.

黄金数据查询

标签:style   http   os   ar   sp   数据   on   代码   bs   

原文地址:http://www.cnblogs.com/ppyuqi/p/4064515.html

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