changed back consumer_token to consumer_key as its not only more consistent with twitters website it also causes less support (less users complaining that their twitter integration is broken) :)
This commit is contained in:
parent
a605ab482b
commit
dd326699bd
2 changed files with 2 additions and 2 deletions
|
|
@ -196,7 +196,7 @@ class User
|
|||
def post_to_twitter(service, message)
|
||||
|
||||
Twitter.configure do |config|
|
||||
config.consumer_key = SERVICES['twitter']['consumer_token']
|
||||
config.consumer_key = SERVICES['twitter']['consumer_key']
|
||||
config.consumer_secret = SERVICES['twitter']['consumer_secret']
|
||||
config.oauth_token = service.access_token
|
||||
config.oauth_token_secret = service.access_secret
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
twitter:
|
||||
consumer_token: ""
|
||||
consumer_key: ""
|
||||
consumer_secret: ""
|
||||
facebook:
|
||||
app_id: ""
|
||||
|
|
|
|||
Loading…
Reference in a new issue