https://github.com/olithissen/twitter-oob
A Node.js CLI app to obtain Twitter credentials in "out of band" mode
https://github.com/olithissen/twitter-oob
Last synced: 2 months ago
JSON representation
A Node.js CLI app to obtain Twitter credentials in "out of band" mode
- Host: GitHub
- URL: https://github.com/olithissen/twitter-oob
- Owner: olithissen
- Created: 2017-02-21T22:23:21.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-07-18T12:10:13.000Z (almost 6 years ago)
- Last Synced: 2025-02-23T01:37:34.692Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 10.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://travis-ci.org/olithissen/twitter-oob)
[](http://badge.fury.io/js/twitter-oob)
[](http://www.npmjs.com/package/twitter-oob)
[](https://depshield.github.io)# twitter-oob
> A Node.js CLI app to obtain Twitter credentials in "out of band" mode
## When to use it
If you ever want to write an application that connects to Twitter
but you don't want to provide everything needed for a full-scale OAuth process like
callback URLs and such. (And if you want to register your app on **account A** but use it
with **account B**)## How it works
For cases like these Twitter has a nice feature called "out of band" or obb authentication.
Using your apps *consumer key* and *consumer secret* you can generate a *request token* that
can be passed to Twitter as an URL-parameter.Instead of performing a callback to your backend you will receive a PIN-code for verification. A PIN-code that can then be used to obtail the final *access token* and *access token secret*
## How to use it
### Install
```
npm install twitter-oob -g
```### Run
```
twoob auth
```