Module: PayPalSDK::Config

Defined in:
lib/ruby-paypal-extended.rb

Overview

Various configuration values

Constant Summary collapse

CLIENT_VERSION =

The PayPal NVP API version that this client can talk to.

"56.0"
CLIENT_SOURCE =

The name of this client

"ruby-paypal-extended"
SANDBOX_API_HOST =

The hostname for the sandbox API target

"api-3t.sandbox.paypal.com"
SANDBOX_API_PATH =

The path for the sandbox API target

"/nvp"
PRODUCTION_API_HOST =

The hostname for the production API target

"api-3t.paypal.com"
PRODUCTION_API_PATH =

The path for the production API target

"/nvp"
SANDBOX_IPN_URL =

The URL to the sandbox IPN endpoint

'https://www.sandbox.paypal.com/cgi-bin/webscr'
PRODUCTION_IPN_URL =

The URL to the productino IPN endpoint

'https://www.paypal.com/cgi-bin/webscr'
SANDBOX_API_ENDPOINT =

The Hashes used by Profile

{"SERVER" => SANDBOX_API_HOST, "SERVICE" => SANDBOX_API_PATH}
PRODUCTION_API_ENDPOINT =
{"SERVER" => PRODUCTION_API_HOST, "SERVICE" => PRODUCTION_API_PATH}