baogume/douban-up

This package is abandoned and no longer maintained. No replacement package was suggested.

豆瓣自动顶帖

dev-master 2019-04-21 06:13 UTC

This package is not auto-updated.

Last update: 2021-08-29 15:27:54 UTC


README

Installation

Installation is possible using Composer.

If you don't already use Composer, you can download the composer.phar binary:

curl -sS https://getcomposer.org/installer | php

Then install the library:

php composer.phar require baogume/douban-up dev-master

Run

require 'douban_up.php';
$douban = new douban_up();
$douban->username      = '豆瓣用户名';
$douban->password      = '豆瓣密码';
$douban->code_username = '打码账号用户名';
$douban->code_password = '打码账号密码';
$douban->code_id       = '打码账号软件ID';
$douban->code_key      = '打码账号软件Key';
$douban->comment       = '顶帖内容';
// 顶帖url和内容 如果为空则用$douban->comment
// 可以是单个帖子的字符串类型 数组可以为每个帖子设置顶贴内容
$douban->douban_up_url = [
    'https://www.douban.com/group/topic/xxxx/' => 'up1',
    'https://www.douban.com/group/topic/xxxx/' => 'up2',
    'https://www.douban.com/group/topic/xxxx/' => 'up3'
];
print_r($douban->douban_up());

// 删除评论
// $douban->deleteComment();