twitter-php
twitter-php copied to clipboard
Small and easy PHP library for sending messages to Twitter and receiving statuses.
The purpose of this pull-request is to use the existing infrastructure of this plugin to retrieve a request token from Twitter that can be used to generate 3-legged authentication flows....
Some POST methods need the data in the URL query parameters, like the GET methods
by default, tweets are truncated, must add this in query to have full tweets: 'tweet_mode' => 'extended' when we do that, the text property is replaced by full_text so it...
Some times you need to know your rate limiting, and the only way to know it is by reading this HTTP headers: ```text x-rate-limit-limit x-rate-limit-reset x-rate-limit-remaining ``` So I added...
Adjusted `Twitter::request(..)` to allow users the ability to query Twitter API v1.1 & v2: * Created `Twitter::makeApiUrl(..)` method for joining versioned API resource paths * Added `$apiSuffix` parameter to `Twitter::request(..)`...