commit
f96a975b70
2 changed files with 5 additions and 4 deletions
|
@ -30,7 +30,9 @@
|
|||
"twitter_access_token": "",
|
||||
"twitter_access_secret": "",
|
||||
"wunderground": "",
|
||||
"googletranslate": ""
|
||||
"googletranslate": "",
|
||||
"rdio_key": "",
|
||||
"rdio_secret": ""
|
||||
},
|
||||
"permissions": {
|
||||
"admins": {
|
||||
|
|
|
@ -4,9 +4,8 @@ import re
|
|||
from util import hook
|
||||
import oauth2 as oauth
|
||||
|
||||
|
||||
CONSUMER_KEY = "KEY"
|
||||
CONSUMER_SECRET = "SECRET"
|
||||
CONSUMER_KEY = conn.conf['api_keys'].get("rdio_key", "KEY")
|
||||
CONSUMER_SECRET = conn.conf['api_keys'].get("rdio_secret", "SECRET")
|
||||
|
||||
|
||||
def getdata(inp, types):
|
||||
|
|
Reference in a new issue