Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vanita5/mastodon-api
Mastodon API Client Library
https://github.com/vanita5/mastodon-api
authorization mastodon mastodon-apis node-mastodon node-module nodejs-modules streaming
Last synced: about 1 month ago
JSON representation
Mastodon API Client Library
- Host: GitHub
- URL: https://github.com/vanita5/mastodon-api
- Owner: vanita5
- License: mit
- Created: 2017-04-03T14:21:10.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-09-01T07:44:12.000Z (about 1 year ago)
- Last Synced: 2024-05-23T03:33:41.438Z (6 months ago)
- Topics: authorization, mastodon, mastodon-apis, node-mastodon, node-module, nodejs-modules, streaming
- Language: JavaScript
- Size: 562 KB
- Stars: 121
- Watchers: 3
- Forks: 21
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mastodon API
[![Build Status](https://travis-ci.org/vanita5/mastodon-api.svg)](https://travis-ci.org/vanita5/mastodon-api) [![NPM Downloads](https://img.shields.io/npm/dt/mastodon-api.svg)](https://www.npmjs.com/package/mastodon-api) [![NPM Version](https://img.shields.io/npm/v/mastodon-api.svg)](https://www.npmjs.com/package/mastodon-api) [![code style](https://img.shields.io/badge/code%20style-airbnb-ff69b4.svg)](https://github.com/airbnb/javascript)[Mastodon](https://github.com/tootsuite/mastodon/) API Client for node
# Installing
```bash
yarn add mastodon-api
```OR
```bash
npm install --save mastodon-api
```# Usage:
## Authorization
For getting an access token, please take a look into [examples/authorization.js](https://github.com/vanita5/mastodon-api/blob/master/examples/authorization.js).
For more information, please take a look on the wiki [here](https://github.com/jessicahayley/node-mastodon/wiki/Getting-an-access_token-with-the-oauth-package)
and [here](https://github.com/tootsuite/mastodon/blob/master/docs/Using-the-API/API.md#apps).The authorization process works as follows:
1. Hit the `/apps` endpoint to create an OAuth application
2. With the received `client_id` and `client_secret` get an authorization URL
3. Get an access token by hitting the `/oauth/token` endpoint with the authorization code you got from the authorization page## `Mastodon.createOAuthApp(url, clientName, scopes, redirectUri)`
Makes a call to the `/app` endpoint to create an OAuth app.
Returns the apps `id`, `client_id` and `client_secret`.These values should be stored and used from now on. Ideally only call this once!
**url**
Optional. The base url of the Mastodon instance. Defaults to `https://mastodon.social/api/v1/apps`
**clientName**
Optional. Defaults to `mastodon-node`
**scopes**
Optional. Defines the scopes of your OAuth app whitespace seperated. Defaults to `read write follow`.
**redirectUri**
Optional. Defaults to `urn:ietf:wg:oauth:2.0:oob`. This will be used in a future call to `Mastodon.getAuthorizationUrl(...)`, only the URL defined here can be used later to redirect the user. The default means no redirect (the code will be shown to the user).
## `Mastodon.getAuthorizationUrl(clientId, clientSecret, baseUrl, scope, redirectUri)`
Returns an authorization url for users to authorize your application.
`clientId` and `clientSecret` can be obtained by calling `Mastodon.createOAuthApp(...)` before.**clientId**
Your `client_id`.
**clientSecret**
Your `client_secret`.
**baseUrl**
Optional. Defaults to `https://mastodon.social`.
**scope**
Optional. Defines the scopes of your OAuth app whitespace seperated. Defaults to `read write follow`.
**redirectUri**
Optional. Defaults to `urn:ietf:wg:oauth:2.0:oob`. If you specify your own URL, it will be called with a query parameter `code`.
## `Mastodon.getAccessToken(clientId, clientSecret, authorizationCode, baseUrl, redirectUri)`
After authorizing your OAuth application via the authorization URL from `Mastodon.getAuthorizationUrl(...)`
you'll get the authorization code on the website, which lets us obtain the access token we actually need.**clientId**
Your `client_id`.
**clientSecret**
Your `client_secret`.
**authorizationCode**
The authorization code you should have got from the authorization page.
**baseUrl**
Optional. Defaults to `https://mastodon.social`.
**redirectUri**
Optional. Defaults to `urn:ietf:wg:oauth:2.0:oob`.
```javascript
import Mastodon from 'mastodon-api'const M = new Mastodon({
access_token: '...',
timeout_ms: 60*1000, // optional HTTP request timeout to apply to all requests.
api_url: 'https://gay.crime.team/api/v1/', // optional, defaults to https://mastodon.social/api/v1/
})
```# node-mastodon API:
## `const M = new Mastodon(config)`
Create a `Mastodon` instance that can be used to make requests to Mastodon's APIs.
If authenticating with user context, `config` should be an object of the form:
```
{
access_token: '...'
}
```## `M.get(path, [params], callback)`
GET any of the REST API endpoints.**path**
The endpoint to hit.
**params**
(Optional) parameters for the request.
**callback**
`function (err, data, response)`
- `data` is the parsed data received from Mastodon.
- `response` is the [http.IncomingMessage](http://nodejs.org/api/http.html#http_http_incomingmessage) received from Mastodon.## `M.post(path, [params], callback)`
POST any of the REST API endpoints. Same usage as `T.get()`.
## `M.stream(path, [params])`
Returns a stream listener instance. See examples on how to use it.
## `M.getAuth()`
Get the client's authentication tokens.## `M.setAuth(tokens)`
Update the client's authentication tokens.-------
# Examples
### Reading the home timeline
```javascript
M.get('timelines/home', {}).then(resp => console.log(resp.data))
```### Upload an image and attach it to a tweet
```javascript
M.post('media', { file: fs.createReadStream('path/to/image.png') }).then(resp => {
const id = resp.data.id;
M.post('statuses', { status: '#selfie', media_ids: [id] })
});
```### Stream home timeline
[Read](https://github.com/tootsuite/mastodon/blob/master/docs/Using-the-API/Streaming-API.md) the API documentation.
```javascript
const listener = M.stream('streaming/user')listener.on('message', msg => console.log(msg))
listener.on('error', err => console.log(err))
```-------
# Advanced
You may specify an array of trusted certificate fingerprints if you want to only trust a specific set of certificates.
When an HTTP response is received, it is verified that the certificate was signed, and the peer certificate's fingerprint must be one of the values you specified. By default, the node.js trusted "root" CAs will be used.eg.
```js
const M = new Mastodon({
access_token: '...',
trusted_cert_fingerprints: [
'66:EA:47:62:D9:B1:4F:1A:AE:89:5F:68:BA:6B:8E:BB:F8:1D:BF:8E',
]
})
```# License
This software is a fork of [twit](https://github.com/ttezel/twit) and [node-mastodon](https://github.com/jessicahayley/node-mastodon).
Thanks for your awesome work <3
```
(The MIT License)Copyright (c) 2017 vanita5
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
```