twitter / vine
A PHP client written for the unofficial Vine API
Installs: 245
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/twitter/vine
Requires
- lib/curl: 0.5
Requires (Dev)
- phpunit/phpunit: 4.0.*
This package is auto-updated.
Last update: 2025-09-29 01:32:53 UTC
README
A PHP Vine API client
Usage:
Create a new instance of the Client:
$vine = new \Api\Vine\Client();
Then use the get
method to call one of the get resources, e.g.
//Searches, just give the get the resource and it will respond with the results in stdObj format
$searchResults = $vine->get('timelines/tag/{{searchQuery}}');
//Creates a vine session
$login = $vine
->setUsername('bananana')
->setPassword('LOL_SONY')
->login();
//Deletes the login
$logout = $vine->logout();
You can see the API documentation here: [https://github.com/starlock/vino/wiki/API-Reference](Vine API Reference)