Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/estebanlm/pharo-twitter
A Pharo API for Twitter
https://github.com/estebanlm/pharo-twitter
pharo twitter
Last synced: 5 days ago
JSON representation
A Pharo API for Twitter
- Host: GitHub
- URL: https://github.com/estebanlm/pharo-twitter
- Owner: estebanlm
- License: mit
- Created: 2017-12-09T08:49:27.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2021-04-08T12:26:56.000Z (over 3 years ago)
- Last Synced: 2024-10-31T06:23:40.572Z (about 2 months ago)
- Topics: pharo, twitter
- Language: Smalltalk
- Size: 43 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pharo-twitter
a [Pharo](http://pharo.org) API for Twitter## Installation
- You need Pharo 7.0```Smalltalk
Metacello new
repository: 'github://estebanlm/pharo-twitter/src';
baseline: 'Twitter';
load.
```## Examples
### Reading your timeline.
```Smalltalk
twitterLogin := TwiLogin
consumerKey: 'CONSUMER_KEY'
consumerSecret: 'CONSUMER_SECRET'
accessToken: 'ACCESS_TOKEN'
accessTokenSecret: 'ACCESS_TOKEN_SECRET'.twitterLogin timelineUser includeRTs: true; next.
twitterLogin timelineHome next.
```