0

我有推特用户名和密码。我想要的是,当客户从管理端添加任何新文章时,我希望它的 url 是自动 twit。每次他添加文章时,我都不想打扰客户登录 Twitter。有什么方法可以使用 Abraham twitteroauth 库自动登录。谢谢

4

1 回答 1

0

Twitter 需要首先授权客户端应用程序,然后您才能在某些情况下自动发送推文(即发布新文章)。有关详细描述,您可以查看我为 Chyrp 创建的这个 Twitter 模块。它使用 Abraham 的 Twitter oAuth 库。在 abraham 的图书馆档案中还有一个明显的例子,可以稍微澄清一下。

另一方面,您用于客户网站的 CMS/博客应提供挂钩(回调),以便了解何时创建帖子,以便相应地调用 Tweet 方法。

来自 Chyrp 的链接 Twitter 模块的示例:

1) 使用 Twitter 授权:

static function admin_chweet_auth($admin) {
    if (!Visitor::current()->group->can("change_settings"))
        show_403(__("Access Denied"), __("You do not have sufficient privileges to change settings."));

    # If the oauth_token is old redirect
    if (isset($_REQUEST['oauth_token']) && $_SESSION['oauth_token'] !== $_REQUEST['oauth_token'])
    Flash::warning(__("Old token. Please refresh the page and try again."), "/admin/?action=chweet_settings");

    # New TwitteroAuth object with app key/secret and token key/secret from SESSION
    $tOAuth = new TwitterOAuth(C_KEY, C_SECRET, $_SESSION['oauth_token'], $_SESSION['oauth_token_secret']);
    $access_token = $tOAuth->getAccessToken($_REQUEST['oauth_verifier']);

    # Save access tokens locally for future tweeting.
    $config = Config::current();
    $config->set("chweet_oauth_token", $access_token["oauth_token"]);
    $config->set("chweet_oauth_secret", $access_token["oauth_token_secret"]);
    $config->set("chweet_user_id", $access_token["user_id"]);
    $config->set("chweet_username", $access_token["screen_name"]);

    unset($_SESSION['oauth_token']);
    unset($_SESSION['oauth_token_secret']);

    if (200 == $tOAuth->http_code)
        Flash::notice(__("Chweet was successfully Authorized to Twitter."), "/admin/?action=chweet_settings");
    else
        Flash::warning(__("Chweet couldn't be authorized."), "/admin/?action=chweet_settings");
}

2)add_post (trigger)

public function add_post($post) {
   fallback($chweet, (int) !empty($_POST['chweet']));
   SQL::current()->insert("post_attributes",
                    array("name" => "tweeted",
                          "value" => $chweet,
                          "post_id" => $post->id));

   if ($chweet and $post->status == "public")
       $this->tweet_post($post);
}

3) Tweet-it 方法(截断)。

public function tweet_post($post) {
    $tOAuth = new TwitterOAuth(C_KEY, C_SECRET, $config->chweet_oauth_token, $config->chweet_oauth_secret);
    $user = $tOAuth->get("account/verify_credentials");
    $response = $tOAuth->post("statuses/update", array("status" => $status));
    return $response;
}
于 2012-08-03T06:22:58.910 回答