* @copyright 2019 smiley * @license MIT */ declare(strict_types=1); namespace chillerlan\OAuth\Providers; /** * PayPal OAuth2 (sandbox) * * @link https://developer.paypal.com/api/rest/ */ class PayPalSandbox extends PayPal{ public const IDENTIFIER = 'PAYPALSANDBOX'; protected string $authorizationURL = 'https://www.sandbox.paypal.com/connect'; protected string $accessTokenURL = 'https://api.sandbox.paypal.com/v1/oauth2/token'; protected string $apiURL = 'https://api.sandbox.paypal.com'; }