Skip to content

Commit

Permalink
Remove outdated access token
Browse files Browse the repository at this point in the history
  • Loading branch information
John Crepezzi committed Jun 4, 2015
1 parent ee4ae27 commit 5d5bf65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion background.js
@@ -1,5 +1,5 @@
chrome.omnibox.onInputChanged.addListener(function (query, suggest) {
var accessToken = '4Haevzgr5JIoLkHl1TdfRDJ4jy2PsPKQEfQzTR5_BIgJHty-uAaoWo3WfGCkCbnn';
var accessToken = '<your-access-token>';

fetch('https://api.genius.com/search?access_token=' + accessToken + '&q=' + encodeURIComponent(query)).then(function (response) {
response.json().then(function (data) {
Expand Down

0 comments on commit 5d5bf65

Please sign in to comment.