Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // https://ITv4.de/155-twitter-tweets-mit-php-versenden-mit-twitteroauth
- use Abraham\TwitterOAuth\TwitterOAuth; // Muss sich auf der Seite ganz oben befinden
- require 'twitteroauth/autoload.php'; // https://twitteroauth.com
- define('CONSUMER_KEY', 'ENTER_YOUR_API_KEY');
- define('CONSUMER_SECRET', 'ENTER_YOUR_API_SECRET_KEY');
- define('ACCESS_TOKEN', 'ENTER_YOUR_ACCESS_TOKEN');
- define('ACCESS_TOKEN_SECRET', 'ENTER_YOUR_ACCESS_TOKEN_SECRET');
- $connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, ACCESS_TOKEN, ACCESS_TOKEN_SECRET);
- $status = 'Dies ist der Text, welcher als Tweet gesendet wird.';
- $post_tweets=$connection->post("statuses/update", ["status" => $status]);
- ?>
Add Comment
Please, Sign In to add comment