https://github.com/tuki0918/totoro
https://github.com/tuki0918/totoro
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tuki0918/totoro
- Owner: tuki0918
- License: mit
- Created: 2016-04-28T12:16:43.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-05-03T09:51:09.000Z (about 9 years ago)
- Last Synced: 2025-03-10T16:49:15.416Z (3 months ago)
- Language: PHP
- Size: 27.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/tuki0918/totoro)
[](https://packagist.org/packages/tuki0918/totoro)
[](https://packagist.org/packages/tuki0918/totoro)
[](https://coveralls.io/github/tuki0918/totoro?branch=master)
[](https://packagist.org/packages/tuki0918/totoro)
[](https://packagist.org/packages/tuki0918/totoro)# totoro
```
getStatusesUserTimeline([
'screen_name' => 'tuki0918',
'count' => 5
])->entities();// return: Totoro\General\Entities\Tweet[]
print_r($tweets);// post: tweet
$tweet = $client->postStatusesUpdate(
['status' => 'twitter api post.']
)->entity();// post: alias tweet
$tweet = $client->tweet(
['status' => 'twitter api post.']
)->entity();// return: Totoro\General\Entities\Tweet
print_r($tweet);```