sample-code-php icon indicating copy to clipboard operation
sample-code-php copied to clipboard

This repository contains working code samples which demonstrate php integration with the Authorize.Net API

Results 35 sample-code-php issues
Sort by recently updated
recently updated
newest added

```bash ErrorException: Attempt to read property "className" on null /var/www/giving/vendor/authorizenet/authorizenet/lib/net/authorize/api/contract/v1/ARBSubscriptionType.php:295 /var/www/giving/vendor/authorizenet/authorizenet/lib/net/authorize/api/controller/base/ApiOperationBase.php:138 /var/www/giving/vendor/authorizenet/authorizenet/lib/net/authorize/api/controller/base/ApiOperationBase.php:104 /var/www/giving/app/Subscription.php:393 ``` The only thing I see different in our code for setting up ARB is we're passing...

My code for setTransactionRequest: ```php $transactionRequestType = new AnetAPI\TransactionRequestType(); $transactionRequestType->setTransactionType('authOnlyContinueTransaction'); $transactionRequestType->setRefTransId($transactionID); $transactionRequestType->setAmount($total); $transactionRequestType->setPayment($authorizePayment); $transactionRequestType->setOrder($order); $transactionRequestType->setShipping($shipping); $transactionRequestType->setCustomer($customerData); $transactionRequestType->setTax($tax); ``` Steps to reproduce 1. Start the checkout process with PayPal 2. Redirected...

https://github.com/AuthorizeNet/sample-code-php/blob/0de20c3c95339581c315726de12d2f759e278070/CustomerProfiles/create-customer-payment-profile.php#L55 we are putting a `$paymentprofile` into an array called `$paymentprofiles`. notice the extra `s`. this array is not used anywhere. unless i am missing something....

I have never used Authorize.net before and just got my sandbox account. I am migrating from Stripe. I would like to use simple checkout just like I used Stripe checkout,...

It is my experience that a call to "Get Settled Batch List" will succeed if * Neither setFirstSettlementDate and setLastSettlementDate are performed * Both setFirstSettlementDate and setLastSettlementDate are performed But...

Hi, I am providing correct information but getting the same error... Transaction Failed Error code : E00007 Error message : User authentication failed due to invalid authentication values.

Hi i am trying to intregrate authorize.ne in codeigniter framework. i already load everything as it is mentioned but it gives net class not found

I am using the sample code from the PHP SDK and the package throws an error of `Call to undefined function net\authorize\api\contract\v1\ is_object().` It looks like its coming from this...