All Projects → fanfoujs → fanfou-sdk-node

fanfoujs / fanfou-sdk-node

Licence: MIT license
Fanfou SDK

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to fanfou-sdk-node

fanfou-export
Export all your Fanfou statuses
Stars: ✭ 23 (-30.3%)
Mutual labels:  fanfou, fanfou-sdk
Twidere Android
twidere.com
Stars: ✭ 2,486 (+7433.33%)
Mutual labels:  fanfou
alfred-fanfou
Alfred workflow for Fanfou
Stars: ✭ 15 (-54.55%)
Mutual labels:  fanfou
fanpy
Python 饭否 API 工具 🍚
Stars: ✭ 15 (-54.55%)
Mutual labels:  fanfou
PREFiX
简洁、易用的 Chrome 饭否客户端.
Stars: ✭ 50 (+51.52%)
Mutual labels:  fanfou

fanfou-sdk-node

Fanfou SDK for Node.js

Install

npm i fanfou-sdk

Usage

import Fanfou from 'fanfou-sdk';

OAuth

const ff = new Fanfou({
	consumerKey: '',
	consumerSecret: '',
	oauthToken: '',
	oauthTokenSecret: ''
});

const timeline = await ff.getHomeTimeline();

XAuth

const ff = new Fanfou({
	consumerKey: '',
	consumerSecret: '',
	username: '',
	password: ''
});

await ff.xauth();

const timeline = await ff.getPublicTimeline({count: 10});
const status = await ff.createStatus({status: 'Hi Fanfou'});

Options

  • consumerKey: The consumer key
  • consumerSecret: The consumer secret
  • oauthToken: The OAuth token
  • oauthTokenSecret: The OAuth token secret
  • username: The Fanfou username
  • password: The Fanfou password
  • protocol: Set the prototol, default is http:
  • apiDomain: Set the API domain, default is api.fanfou.com
  • oauthDomain: Set the OAuth domain, default is fanfou.com
  • hooks: Hooks allow modifications with OAuth

For more Fanfou API docs, see the Fanfou API doc.

API

For full SDK API, please refer to the documentation.

Examples

// Get request token
const token = await ff.getRequestToken();

// Get access token
const token = await ff.getAccessToken(token);

// Get timeline
const timeline = await ff.getHomeTimeline();

// Post status
const status = await ff.createStatus({status: 'post test'});

// Upload photo
const result = await ff.uploadPhoto({photo: fs.createReadStream(path), status: 'unicorn'});

// Get user
const user = await ff.getUser({id: 'lito'});

// Request Fanfou API by passing the URI
const timeline = await ff.get('/statuses/home_timeline', {count: 10});
const status = await ff.post('/statuses/update', {status: 'Hi Fanfou'});

Tips

Use hooks for your reverse-proxy server

const ff = new Fanfou({
	consumerKey: '',
	consumerSecret: '',
	oauthToken: '',
	oauthTokenSecret: '',
	apiDomain: 'api.example.com',
	oauthDomain: 'example.com',
	hooks: {
		baseString: str => {
			return str.replace('example.com', 'fanfou.com');
		}
	}
});

Related

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].