Skip to content

Commit

Permalink
fixing breaking change to auth url
Browse files Browse the repository at this point in the history
  • Loading branch information
ghinch authored and Greg Hinch committed May 11, 2014
1 parent 789f0ce commit e6d9b0f
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 e6d9b0f

Please sign in to comment.