itisbean/weibohit

Hit the ranking for Weibo

1.2.10 2020-12-01 04:21 UTC

This package is auto-updated.

Last update: 2024-03-24 14:24:49 UTC


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 = '');