-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeys.js
More file actions
27 lines (24 loc) · 656 Bytes
/
keys.js
File metadata and controls
27 lines (24 loc) · 656 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
* Author: Alex P
* Project Name: liri-node-app keys.js
* Version: 1
* Date: 09.18.17
* URL: github.com/itsokayitsofficial/liri-node-app
*/
// Twitter API keys
var twitterKeys = {
consumer_key: 'LRtKWnfkEYctrT5udepDGADyM',
consumer_secret: 'gv1RiB4eXd4mftJJKYnAS7BC7SrI0d7IjY9nQn8MRwRC9Q7F7G',
access_token_key: '2823395241-uYjfYfpdBkneGSuUD0G5xBmWrXDZKsVrFPrhGhT',
access_token_secret: 'RTe0Oh7TY4qMyCWocFUA5OktmbiInnE1kwwiv6OAzCYBb'
};
// Spotify API keys
var spotifyKeys = {
client_id: '21ff2fb0d1594b44b2759fdcdd60b77d',
client_secret: '4a8f6c3b93ea44b7a465ad51f2128704'
};
// Exports
module.exports = {
twitterKeys,
spotifyKeys
};