mirror of
https://github.com/thewesker/bug-em.git
synced 2025-12-23 05:21:05 -05:00
11 lines
495 B
JavaScript
11 lines
495 B
JavaScript
// Twitter Endpoints
|
|
module.exports = {
|
|
API_HOST : 'https://api.twitter.com/'
|
|
, REST_ROOT : 'https://api.twitter.com/1.1/'
|
|
, PUB_STREAM : 'https://stream.twitter.com/1.1/'
|
|
, USER_STREAM : 'https://userstream.twitter.com/1.1/'
|
|
, SITE_STREAM : 'https://sitestream.twitter.com/1.1/'
|
|
, MEDIA_UPLOAD : 'https://upload.twitter.com/1.1/'
|
|
, OA_REQ : 'https://api.twitter.com/oauth/request_token'
|
|
, OA_ACCESS : 'https://api.twitter.com/oauth/access_token'
|
|
} |