UNPKG
mastodon-api
Version:
latest (1.3.0)
1.3.0
1.2.0
1.1.1
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
Mastodon API library with streaming support
github.com/vanita5/mastodon-api
vanita5/mastodon-api
mastodon-api
/
examples
/
home_timeline.js
8 lines
(5 loc)
•
158 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
Mastodon
from
'../lib/mastodon'
const
M =
new
Mastodon
({
access_token
:
'...'
}) M.
get
(
'timelines/home'
, {}).
then
(
resp
=>
console
.
log
(resp.
data
))