Socket
Socket
Sign inDemoInstall

node-tumlbr

Package Overview
Dependencies
48
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    node-tumlbr

use tumblr token access api, can set proxy.


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

tumblr.js

use tumblr token access api, can set proxy.

This repository is still in the test development phase, please do not download it, otherwise the consequences will be conceited.

Usage

const Tumblr = require('node-tumlbr');

const api = new Tumblr({
	consumer_key: '',
	consumer_secret: '',
	token: '',
	token_secret: ''
});

api.dashBoard().then(res => {
	console.log(res);
});

// or use async and await
const res = await api.dashBoard();
console.log(res);

Proxy

api.setProxy({
	host: 'localhost', // url like sample.com
	port: '1087'
});

API

Now only API with get method can be used. If you find any problems in the process, please let me know.

blogInfo
blogAvatar
blogLikes
blogFollowers
blogPosts
blogQueue
blogDrafts
blogSubmissions
userInfo
userDashboard
userFollowing
userLikes
taggedPosts

Test

  1. install parcel
// yarn
yarn global add parcel-bundler

// npm
npm install -g parcel-bundler

npm run test or yarn test

Development

yarn build

LICENSE

MIT

Keywords

FAQs

Last updated on 29 Apr 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc