php curl sina微博话题

<?
	define("APPKEY","");
	define("WEIBOUSERNAME","");
	define("WEIBOPASSWORD","");
	define("TRENDNAME","易试买");
	ini_set('default_charset','utf-8');
	$ci = curl_init();
	curl_setopt($ci, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
	curl_setopt($ci, CURLOPT_URL, "http://api.t.sina.com.cn/trends/statuses.json?source=".APPKEY );
	curl_setopt($ci, CURLOPT_USERPWD, WEIBOUSERNAME.":".WEIBOPASSWORD);
	curl_setopt($ch,CURLOPT_POST,1);
	curl_setopt($ci, CURLOPT_POSTFIELDS, "trend_name=".TRENDNAME);
	$response = curl_exec($ci);
	curl_close ($ci);
	print_r($response);
?>
posted @ 2011-05-13 17:08  alex hu  阅读(362)  评论(0编辑  收藏  举报