thutayarmoe/tweets

Get Tweets from Twitter Api

dev-main 2022-03-25 10:46 UTC

This package is auto-updated.

Last update: 2025-06-25 18:25:51 UTC


README

Installation

composer require thutayarmoe/tweets

How to use

<?php

use ThutaYarMoe\Tweets\TweetService;

Route::get('/', function (TweetService $service) {
    $users = [
        [
            'id'=> 'id',
            'token'=> 'token'
        ],
    ];

    $tweets = $service->get_tweets($users);
    return $tweets;
});