twitterBOT

twitterbotをphpでつくる

twitterbot(自動投稿)をphpにて作成する。

GitHub - abraham/twitteroauth: The most popular PHP library for use with the Twitter OAuth REST API.
The most popular PHP library for use with the Twitter OAuth REST API. - GitHub - abraham/twitteroauth: The most popular PHP library for use with the Twitter OAu...

↑からダウンロード、または
Composer にて

サンプル
https://twitter.com/uribo_3

<?php

// OAuthライブラリの読み込み
require "twitter/autoload.php";

use Abraham\TwitterOAuth\TwitterOAuth;

//認証情報4つ

$consumerKey = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
$consumerSecret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
$accessToken = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
$accessTokenSecret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";


$array_1 = array(
  "ブッ≡3(オナラ)"
    );




$randkey_1 = array_rand( $array_1, 1 );

$message = $array_1[$randkey_1];

  echo"$message";

// Twitter接続
$connection = new TwitterOAuth($consumerKey, $consumerSecret, $accessToken, $accessTokenSecret);
// ツイート
$result = $connection->post("statuses/update", array("status" => $message ));
//レスポンス確認
//var_dump($result);

コメント

hage01

2008年頃からワードプレス使ってますヴァージョンは2.6か2.8かだったかな?

hage01をフォローする
タイトルとURLをコピーしました