Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/matteocontrini/node-periscope-recorder

Get Periscope lives from Twitter and record them
https://github.com/matteocontrini/node-periscope-recorder

Last synced: 3 months ago
JSON representation

Get Periscope lives from Twitter and record them

Awesome Lists containing this project

README

        

# node-periscope-recorder
Get Periscope lives from Twitter and record them

## Install
```js
npm install node-periscope-recorder
```

## Use
```js
var Recorder = require('node-periscope-recorder');
var config = {
consumer_key: '',
consumer_secret: '',
access_token: '',
access_token_secret: ''
};
var rec = new Recorder(config);

var userId = '265363897';
rec.start(userId);
```