Skip to content

Commit

Permalink
authorize_path prepended by site
Browse files Browse the repository at this point in the history
  • Loading branch information
coderoshi committed Oct 20, 2010
1 parent 0cdd95e commit 15134c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions oa-oauth/lib/omniauth/strategies/meetup.rb
Expand Up @@ -13,10 +13,10 @@ module Strategies
class Meetup < OmniAuth::Strategies::OAuth
def initialize(app, consumer_key, consumer_secret)
super(app, :meetup, consumer_key, consumer_secret,
:site => 'https://api.meetup.com',
:request_token_path => "/oauth/request",
:access_token_path => "/oauth/access",
:authorize_path => "http://www.meetup.com/authorize/")
# :site => 'https://api.meetup.com',
:request_token_path => "https://api.meetup.com/oauth/request",
:access_token_path => "https://api.meetup.com/oauth/access",
:authorize_path => "http://www.meetup.com/authorize/")
end
end
end
Expand Down

0 comments on commit 15134c2

Please sign in to comment.