da09c92164b58c970f52266162264af83899a522
[WP-Plugins/glm-member-db-registrations.git] /
1 <?php
2 namespace PayPal\Core;
3 class PPConstants
4 {
5     const MERCHANT_SANDBOX_SIGNATURE_ENDPOINT = "https://api-3t.sandbox.paypal.com/2.0";
6     const MERCHANT_SANDBOX_CERT_ENDPOINT = "https://api.sandbox.paypal.com/2.0";
7     const PLATFORM_SANDBOX_ENDPOINT = "https://svcs.sandbox.paypal.com/";
8     const REST_SANDBOX_ENDPOINT = "https://api.sandbox.paypal.com/";
9     const IPN_SANDBOX_ENDPOINT = "https://www.sandbox.paypal.com/cgi-bin/webscr";
10     const OPENID_REDIRECT_SANDBOX_URL = "https://www.sandbox.paypal.com/webapps/auth/protocol/openidconnect";
11
12     const MERCHANT_LIVE_SIGNATURE_ENDPOINT = "https://api-3t.paypal.com/2.0";
13     const MERCHANT_LIVE_CERT_ENDPOINT = "https://api.paypal.com/2.0";
14     const PLATFORM_LIVE_ENDPOINT = "https://svcs.paypal.com/";
15     const REST_LIVE_ENDPOINT = "https://api.paypal.com/";
16     const IPN_LIVE_ENDPOINT = "https://ipnpb.paypal.com/cgi-bin/webscr";
17     const OPENID_REDIRECT_LIVE_URL = "https://www.paypal.com/webapps/auth/protocol/openidconnect";
18 }
19