PHP code example of kitsunecode / twitter

1. Go to this page and download the library: Download kitsunecode/twitter library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

kitsunecode / twitter example snippets


$twitter = new TwitterOAuth($consumer_key, $consumer_secret, $access_token, $access_token_secret);
$content = $twitter->get("account/verify_credentials");

$statuses = $twitter->get("statuses/home_timeline", ["count" => 25, "exclude_replies" => true]);

$twitter = new TwitterOAuth(...);
$twitter->setApiVersion('2');
$response = $twitter->get('users', ['ids' => 12]);



define("CONSUMER_KEY", "apikey");
define("CONSUMER_SECRET", "apikeysecret");
define("ACCESS_TOKEN", "accesstoken");
define("ACCESS_TOKEN_SECRET", "secrettoken");

t: ACCESS_TOKEN_SECRET);
$twitter->setApiVersion(2);
//method post
$res = $twitter->post(path: 'tweets', parameters: ['text' => 'enviando'], json: true);

print_r($res);