Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/matteocontrini/node-periscope-recorder
- Owner: matteocontrini
- Created: 2015-04-17T20:01:00.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-04-17T20:01:10.000Z (over 9 years ago)
- Last Synced: 2024-05-22T22:31:02.489Z (6 months ago)
- Language: JavaScript
- Size: 97.7 KB
- Stars: 26
- Watchers: 9
- Forks: 10
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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);
```