Giter VIP home page Giter VIP logo

paypal-rest-php's Introduction

PayPal REST SDK

This is a fork of the now deprecated https://github.com/paypal/PayPal-PHP-SDK/tree/dev-2.0-beta, with updates for newer APIs.

Creating a Payment

require 'vendor/autoload.php';

use PayPal\v1\Payments\PaymentCreateRequest;
use PayPal\Core\PayPalHttpClient;
use PayPal\Core\SandboxEnvironment;

$environment = new SandboxEnvironment('AdV4d6nLHabWLyemrw4BKdO9LjcnioNIOgoz7vD611ObbDUL0kJQfzrdhXEBwnH8QmV-7XZjvjRWn0kg', 'EPKoPC_haZMTq5uM9WXuzoxUVdgzVqHyD5avCyVC1NCIUJeVaNNUZMnzduYIqrdw-carG9LBAizFGMyK');
$client = new PayPalHttpClient($environment);

$body = [
	"intent" => "sale",
	"transactions" => [
		[
			"amount" => [
				"total" => "10",
				"currency" => "USD"
			]
		]
	],
	"redirect_urls" => [
		"cancel_url" => "http://paypal.com/cancel",
		"return_url" => "http://paypal.com/return"
	],
	"payer" => [
		"payment_method" => "paypal"
	]
];

$request = new PaymentCreateRequest();
$request->body = $body;

try {
	$response = $client->execute($request);
	print_r($response);
} catch (HttpException $ex) {
	echo $ex->statusCode;
	print_r($ex->getMessage());
}

paypal-rest-php's People

Contributors

tinodidriksen avatar

Watchers

 avatar  avatar

Forkers

deawx

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.