Update OpenID Connect URLs to match docs

- URLs were updated. See
  https://developer.paypal.com/docs/api/auth-headers/#obtain-users-consent
This commit is contained in:
Bryant Luk
2016-08-15 11:00:57 -05:00
parent 61bc8a79c7
commit c093d678f8
2 changed files with 5 additions and 5 deletions

View File

@@ -20,8 +20,8 @@ class PayPalConstants
const APPROVAL_URL = 'approval_url';
const REST_SANDBOX_ENDPOINT = "https://api.sandbox.paypal.com/";
const OPENID_REDIRECT_SANDBOX_URL = "https://www.sandbox.paypal.com/webapps/auth/protocol/openidconnect";
const OPENID_REDIRECT_SANDBOX_URL = "https://www.sandbox.paypal.com/signin";
const REST_LIVE_ENDPOINT = "https://api.paypal.com/";
const OPENID_REDIRECT_LIVE_URL = "https://www.paypal.com/webapps/auth/protocol/openidconnect";
const OPENID_REDIRECT_LIVE_URL = "https://www.paypal.com/signin";
}