dev.twitter.comのアプリページから個人トークンを取得して、使用しなくても使用できSign in with Twitter
ます。
セクションの下のアプリページで次をOAuth settings
取得します。
そしてYour access token
getの下で:
アクセスレベルが。であることを確認しますRead, write, and direct messages
。それ以外の場合は、Settings
タブで変更してアクセストークンを再作成します(タブの下部にボタンがありDetails
ます)。
それからphpで
require('Abrahams library');
// Get everything you need from the dev.twitter.com/apps page
$consumer_key = 'APP KEY';
$consumer_secret = 'APP SECRET';
$oauth_token = 'YOUR TOKEN';
$oauth_token_secret = 'YOUR TOKEN SECRET';
// Initialize the connection
$connection = new TwitterOAuth($consumer_key, $consumer_secret, $oauth_token, $oauth_token_secret);
// Send a direct message
$options = array("screen_name" => "theGuyIWantToDM", "text" => "Hey that's my message");
$connection->post('direct_messages/new', $options);