Skip to content

Instantly share code, notes, and snippets.

@jcleblanc
Last active December 15, 2015 16:59
Show Gist options
  • Save jcleblanc/5293394 to your computer and use it in GitHub Desktop.
Save jcleblanc/5293394 to your computer and use it in GitHub Desktop.
Defining your key, secret and URIs for the PayPal RESTful APIs
<?php
define("CLIENT_ID", "YOUR CLIENT ID");
define("CLIENT_SECRET", "YOUR CLIENT SECRET");
define("URI_SANDBOX", "https://api.sandbox.paypal.com/v1/");
define("URI_LIVE", "https://api.paypal.com/v1/");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment