网上现成的程序都不能自定义微博来源。。。所以有现成的源码或程序吗?
1
zythum Mar 1, 2013 微博来源 是写死的不能自定义。根据微博给他们的appkey定的
|
3
tarsier Mar 1, 2013
定是脚本倒没多难,用weibo sdk + api key很好写 (有相关接口)
只不过来源没法定制 |
4
dotbuddle Mar 1, 2013
配合corn使用
<?php //header("Content-type:application/x-www-form-urlencoded"); //header("Accept:text/vnd.wap.wml,text/html,text/plain,image/*,*/*"); function sendWeibo($cont){ $content=$cont; $url="http://weibo.cn/mblog/sendmblog?st=8cea&vt=4&gsid=填写你的"; $post_data="rl=0&content=".$content; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // 我们在POST数据哦! curl_setopt($ch, CURLOPT_POST, 1); // 把post的变量加上 curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data); $output = curl_exec($ch); curl_close($ch); } ?> |