itisbean/weibohit
Composer 安装命令:
composer require itisbean/weibohit
包简介
Hit the ranking for Weibo
README 文档
README
Sina weibo api for php. Including login, post, repost, comment, sign topic...
Composer install
composer require itisbean/weibohit -vvv
Demo
Demo: https://prettycrazyjoey.cn/oursong?referer=joey 左上角➡️拉開
Usage
// 引入autoload.php(框架中使用不需要) include_once __DIR__.'/../vendor/autoload.php'; $whitInstance = \Weibohit\Weibohit::init([ 'username' => 'your account', 'password' => 'your password', 'doorImgPath' => 'if need door code, the door image would be saved here' ]); // 發微博 $ret = $whitInstance->post('I am a robot'); // 評論 $whitInstance->comment($ret['data'], 'right');
Function
post
/** * 发微博 * @param string $text 发送微博的文字内容 * @return array */ $whitInstance->post($text);
repost
/** * 转发 * @param string $mid 原贴ID * @param string $text 发送微博的文字内容 * @return array */ public function repost($mid, $text = '');
comment from pc
/** * 评论帖子 * @param string $mid 贴子ID * @param string $text 评论内容 * @return array */ public function comment($mid, $text = '');
Comment from mobile
/** * 移動端評論帖子 * @param string $mid * @param string $text * @param boolean $istry * @return array */ public function mComment($mid, $text, $istry = false);
like or cancel like
/** * 点赞或取消 * @param string $mid 贴子ID * @return array */ public function like($mid);
sign in the super topic
/** * 超话签到 * @param string $tid 超话ID * @return array */ public function topicSign($tid);
post in the super topic
/** * 超话发贴 * @param string $tid 超话ID * @param string $text 贴子内容 * @return array */ public function topicPost($tid, $text);
get tv info
/** * 微博视频信息 * @param string $tvurl * @return array */ public function getTvinfo($tvurl);
get self info
/** * 获取登录用户ID * @return array */ public function getSelf()
send incrspt cards
/** * 送加油卡 * @param integer $num 送卡数量 * @param string $text 发送微博的文字内容 * @return array */ public function incrspt($num = 1, $text = '');
统计信息
- 总下载量: 34
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-10-16