首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

iteye聊天儿api使用范例

2012-08-22 
iteye闲聊api使用范例?php$ch curl_init()curl_setopt($ch, CURLOPT_URL, http://api.iteye.com/api/

iteye闲聊api使用范例

<?php$ch = curl_init();curl_setopt($ch, CURLOPT_URL, "http://api.iteye.com/api/twitters/create");curl_setopt($ch, CURLOPT_USERPWD, "username:passwd");curl_setopt($ch, CURLOPT_POST, 1);curl_setopt($ch, CURLOPT_POSTFIELDS, 'body=test2');curl_exec($ch);curl_close($ch);?>
?

热点排行