Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 758 Bytes

README.md

File metadata and controls

37 lines (29 loc) · 758 Bytes

pharo-mastodon

a Pharo API for mastodon

Installation

  • You need Pharo 7.0
Metacello new 
  repository: 'github://estebanlm/pharo-mastodon/src';
  baseline: 'Mastodon';
  load.

Examples

Reading your timeline.

"Create a server"
server := MdnServer url: 'https://mastodon.social'.
"Login"
login := server loginUsername: 'username@yourmail.net' password: 'shhh'.
"Read timeline 'home'"
login timelineHome next.

Posting a status

"Create a server"
server := MdnServer url: 'https://mastodon.social'.
"Login"
login := server loginUsername: 'username@yourmail.net' password: 'shhh'.
"Posting a test status"
login postStatus: 'This is a test'.