Skip to content
Advertisement

Tag: paypal

How do I set transaction as digital good PayPal PHP Example

Hello I’m using https://www.evoluted.net/thinktank/web-development/paypal-php-integration so my customers can upgrade their accounts directly through my website. My mistake was that the transactions were being made as physical goods, and now PayPal is requiring proof of fulfillment. If anyone knows how I would change that PHP example to be for Digital Goods, I would sincerely appreciate it. Answer In your request body,

How do I integrate PayPal Smart Button in Laravel 8?

I am trying to integrate PayPal Smart buttons in my Laravel 8 Website. These are the documentation I am using: https://developer.paypal.com/docs/checkout/integrate/ https://developer.paypal.com/docs/checkout/reference/server-integration/set-up-transaction/ https://github.com/paypal/Checkout-PHP-SDK Issue: I get two errors: This error underlines the fetch in my front-end. Here is my route file: Here is my PayPalController Method: Here is my front-end .blade.view file: I have edited the PayPalClient.php file with my

Trying to access array offset on value of type null in laravel

I am getting this error when I am trying to create a new object I am using this package https://github.com/srmklive/laravel-paypal to integrate the PayPal ExpressCheckout in my Laravel app Error Message ErrorException Trying to access array offset on value of type null Answer You should clear the cache. Run these commands

How to send payments to multiple receiver?

I appreciate your advice on this matter. I’ve been looking for a way to send payments to multiple receivers from paypal for a few days, I’m developing a platform in Laravel, and I’ve tried the api-sdk-php, and it works perfectly for individual payments however, I have not got the corresponding method to create an invoice similar to this one. 2

Paypal subscriptions set IPN listener url

Paypal has released a Github Repository which contains sample codes for IPN Listeners. You may check out the Github Repo at: https://github.com/paypal/ipn-code-samples You can find the IPN PHP Class below: And the IPN Listener example: I’m using paypal subscriptions: https://developer.paypal.com/docs/business/subscriptions/ But I can’t find the place where I can specify the IPN Listener url. Any ideas? Thanks. Similar question here:

Advertisement