pharo-twitter

Description

A Pharo API for Twitter

Details

Source
GitHub
Dialect
pharo (65% confidence)
License
MIT
Stars
3
Forks
1
Created
Dec. 9, 2017
Updated
Dec. 11, 2021
Topics
pharo twitter

README excerpt

# 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.
```
← Back to results