From 02c54d2e381e13834727c80af48233af72b22484 Mon Sep 17 00:00:00 2001 From: siacomuzzi Date: Wed, 2 Apr 2014 19:09:21 -0300 Subject: [PATCH] fix base urls --- src/BaseAuth0.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/BaseAuth0.php b/src/BaseAuth0.php index fba97193..5dc7f202 100644 --- a/src/BaseAuth0.php +++ b/src/BaseAuth0.php @@ -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/', ); /**