基于C#的免费新闻api接口调用代码实例

  • 格式:doc
  • 大小:179.50 KB
  • 文档页数:6

下载文档原格式

  / 6
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

基于C#的免费新闻api接口调用代码实例

代码描述:基于C#的免费新闻api接口调用代码实例

代码平台:聚合数据

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using ;

using System.IO;

using ;

using System.Diagnostics;

using System.Web;

//----------------------------------

// 新闻调用示例代码-聚合数据

// 在线接口文档:/docs/138

// 代码中JsonObject类下载地址:/download/gcm32060 21155665/7458439

//----------------------------------

namespace ConsoleAPI

{

class Program

{

static void Main(string[] args)

{

string appkey = "*******************"; //配置您申请的appkey

//1.新闻检索

string url1 = "/onebox/news/query";

var parameters1 = new Dictionary();

parameters1.Add("q", ""); //需要检索的关键字,请UTF8 URLENCOD E

parameters1.Add("key", appkey);//你申请的key

parameters1.Add("dtype", ""); //返回数据的格式,xml或json,默认json

string result1 = sendPost(url1, parameters1, "get");

JsonObject newObj1 = new JsonObject(result1);

String errorCode1 = newObj1["error_code"].Value;

if(errorCode1 == "0")

{

Debug.WriteLine("成功");

Debug.WriteLine(newObj1);

}

else

{

//Debug.WriteLine("失败");

Debug.WriteLine(newObj1["error_code"].Value+":"+newObj1 ["reason"].Value);

}

//2.实时热点

string url2 = "/onebox/news/words";

var parameters2 = new Dictionary();

parameters2.Add("key", appkey);//你申请的key

parameters2.Add("dtype", ""); //返回数据的格式,xml或json,默认json

string result2 = sendPost(url2, parameters2, "get");

JsonObject newObj2 = new JsonObject(result2);

String errorCode2 = newObj2["error_code"].Value;

if(errorCode2 == "0")

{

Debug.WriteLine("成功");

Debug.WriteLine(newObj2);

}

else

{

//Debug.WriteLine("失败");

Debug.WriteLine(newObj2["error_code"].Value+":"+newObj2 ["reason"].Value);

}

}

///

/// Http (GET/POST)

///

/// 请求URL

/// 请求参数

/// 请求方法

/// 响应内容

static string sendPost(string url, IDictionary p arameters, string method)

{

if(method.ToLower() == "post")

{

HttpWebRequest req = null;

HttpWebResponse rsp = null;

System.IO.Stream reqStream = null;

try

{

req = (HttpWebRequest)WebRequest.Create(url);

req.Method = method;

req.KeepAlive = false;

req.ProtocolVersion = HttpVersion.Version10;

req.Timeout = 5000;

req.ContentType = "application/x-www-form-urlencode d;charset=utf-8";

byte[] postData = Encoding.UTF8.GetBytes(BuildQuery (parameters, "utf8"));

reqStream = req.GetRequestStream();

reqStream.Write(postData, 0, postData.Length);

rsp = (HttpWebResponse)req.GetResponse();

Encoding encoding = Encoding.GetEncoding(rsp.Charac terSet);

return GetResponseAsString(rsp, encoding);

}

catch(Exception ex)

{

return ex.Message;

}

相关主题