get-twitter-info

get info about target username

Usage no npm install needed!

<script type="module">
  import getTwitterInfo from 'https://cdn.skypack.dev/get-twitter-info';
</script>

README

get-twitter-info

NPM version Build Status Coveralls Status Dependency Status

get info about target username

Install

npm install --save get-twitter-info

Usage

import getTwitterInfo from 'get-twitter-info';

getTwitterInfo(tokens, 'jsunderhood').then(info => {
  console.log(info);
});

API

getTwitterInfo(tokens, username)

Return a promise that resolves to user info.

tokens

Required
Type: Object

Valid Twitter developer credentials (tokens) in the form of a set of consumer and access tokens/keys. You can use twitter-tokens, to simplify getting tokens.

username

Required
Type: String

Twitter username.

Related

License

MIT © Vladimir Starkov