Skip to content

Commit

Permalink
Merge pull request #18 from ephemerallabs/endpoint
Browse files Browse the repository at this point in the history
Fixing breaking change to auth url
  • Loading branch information
jmg committed May 11, 2014
2 parents df9140a + e6d9b0f commit 1d72717
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyfb/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class FacebookClient(object):
GRAPH_URL = "https://graph.facebook.com/"
API_URL = "https://api.facebook.com/"

BASE_AUTH_URL = "%soauth/authorize?" % GRAPH_URL
BASE_AUTH_URL = "%sdialog/oauth?" % FACEBOOK_URL
DIALOG_BASE_URL = "%sdialog/feed?" % FACEBOOK_URL
FBQL_BASE_URL = "%sfql?" % GRAPH_URL
BASE_TOKEN_URL = "%soauth/access_token?" % GRAPH_URL
Expand Down

0 comments on commit 1d72717

Please sign in to comment.