thutayarmoe/puretweets

Get Tweets from Twitter Api

dev-main 2022-03-28 08:41 UTC

This package is auto-updated.

Last update: 2025-06-28 16:02:42 UTC


README

Installation

composer require thutayarmoe/puretweets

How to use

<?php

include_once "vendor/autoload.php";

use ThutaYarMoe\PureTweets\Tweets;

$users = [
    [
        'id'=>'user id',
        'token'=>'token'
    ],
];
$data = new Tweets();
$tweets = $data->get_tweets($users);

echo "<pre>";print_r($tweets);"</pre>";