Skip to content

Commit

Permalink
fix base urls
Browse files Browse the repository at this point in the history
  • Loading branch information
siacomuzzi committed Apr 2, 2014
1 parent 6bd4e0a commit 02c54d2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/BaseAuth0.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ abstract class BaseAuth0
* @var array
*/
public static $URL_MAP = array(
'api' => 'https://{domain}/api',
'authorize' => 'https://{domain}/authorize',
'token' => 'https://{domain}/oauth/token',
'user_info' => 'https://{domain}/userinfo',
'api' => 'https://{domain}/api/',
'authorize' => 'https://{domain}/authorize/',
'token' => 'https://{domain}/oauth/token/',
'user_info' => 'https://{domain}/userinfo/',
);

/**
Expand Down

0 comments on commit 02c54d2

Please sign in to comment.