Last.fm auth callbacks

This commit is contained in:
Sahat Yalkabov
2013-12-09 17:14:20 -05:00
parent e0c8820e85
commit 67da9d7f01
2 changed files with 6 additions and 3 deletions

View File

@@ -182,9 +182,8 @@ exports.getNewYorkTimes = function(req, res) {
*/
exports.getLastfm = function(req, res) {
var lastfm = new LastFmNode({
api_key: 'apikey', // sign-up for a key at http://www.last.fm/api
secret: 'secret',
useragent: 'appname/vX.X MyApp' // optional. defaults to lastfm-node.
api_key: '1f3e35019e98124cc8f75f8ae99df25f', // sign-up for a key at http://www.last.fm/api
secret: '4ae76d10d76cf680cebf4f0c8dea1aa4'
});
};