You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
673 B
JavaScript
20 lines
673 B
JavaScript
4 years ago
|
import Mastodon from "mastodon-api";
|
||
4 years ago
|
import fs from "fs";
|
||
4 years ago
|
|
||
|
export class MastodonHandler{
|
||
|
constructor(baseUrl, token) {
|
||
|
this.client = new Mastodon({
|
||
|
api_url: `${baseUrl}/api/v1/`,
|
||
|
access_token: token,
|
||
|
})
|
||
|
}
|
||
4 years ago
|
postStatus(status){
|
||
|
this.client.post('statuses', {status: status}).then((resp) => console.log(resp.data))
|
||
|
}
|
||
|
postMedia(status, mediaPath){
|
||
|
this.client.post('media', { file: fs.createReadStream(mediaPath) }).then(resp => {
|
||
|
let id = resp.data.id;
|
||
|
this.client.post('statuses', { status: status, media_ids: [id] }).then((resp) => console.log(resp.data))
|
||
|
});
|
||
|
}
|
||
4 years ago
|
}
|