Questions tagged [braintree]

With just one integration, Braintree's innovative API empowers businesses to seamlessly accept online and mobile app payments effortlessly.

Seamless Integration of Hosted Fields by Braintree

I am currently struggling with setting up Braintree hosted fields on my registration form. Unfortunately, there are significant gaps between the fields which doesn't look appealing. Despite referring to the braintree documentation and guides, I find t ...

Braintree announces the integration of 3DS authentication and the ability to easily add a new default payment method for customers with existing

When a customer needs to update their payment information for a subscription, such as when their card expires or they want to use a new card, I want to ensure a smooth process without charging them prematurely if they have an active subscription. In this s ...

Configuring Braintree Client with JS v3 - encountering a null payment_method_nonce causing issues with form submission

I have successfully integrated Braintree into my Laravel 5.2 app using JS v2 client setup, but now I want to upgrade to v3. I have customized the code from the docs as follows: <form id="checkout-form" action="/checkout" method="post"> <div id= ...

Braintree Payments - Verifying the status of a transaction

I am in the process of setting up my first online store and have opted to use Braintree Payments as the payment gateway. Following the instructions provided in this tutorial video, I have successfully configured Braintree to accept payments and update my ...

Error encountered while using the Braintree PHP SDK cURL functionality

Every time I attempt to generate a client token using Braintree_ClientToken::generate(), I keep receiving a Braintree_Exception_SSLCertificate exception. Despite having the SDK installed and meeting the minimum PHP requirements, I can't seem to figure ...

What could be the reason for receiving the error "client.getVersion is not a function" while using Braintree (Braintree-Web)?

When attempting to render the hostedFields from Braintree, I encounter an issue. After creating a key and obtaining my token, I pass it to my function to create the hostedFields. However, I am faced with an error message stating client.getVersion is not ...

What is the best way to send form data using AJAX with Braintree Transparent Redirect?

Utilizing Python and JQuery in this scenario... In the past, we relied on a standard form.submit(); within the submitHandler of the validation (JQuery plugin) call. The submission was made to Braintree's transparent redirect URL with the redirect-to ...

I'm looking for a way to seamlessly incorporate PayPal Standard into my app with AngularJS. Any suggestions

I am in the process of integrating PayPal payment into my app. After completing all the necessary steps within my app, I want to be able to check out on the PayPal site and then return to my app after a successful transaction. Can someone provide guidance ...

Issue: Unhandled promise rejection: BraintreeError: The 'authorization' parameter is mandatory for creating a client

I'm currently working on integrating Braintree using Angular with asp.net core. However, I've encountered an issue that I can't seem to solve. I'm following this article. The version of Angular I'm using is 14, and I have replicate ...

Issue with Braintree Integration - custom form failing to generate nonce

When I followed the code in the documentation, the nonce did not appear at the server side and I couldn't find any hidden input field for the nonce being submitted. I was only able to make it work with the drop-in form and could see the nonce on the ...

When sending data to the server, Braintree's payment_method_nonse is found to be void

I'm currently in the process of configuring DROP-IN UI. My backend setup involves Laravel 5.2 (following the instructions provided in the documentation: [https://laravel.com/docs/5.2/billing#braintree-configuration] I have put together a BraintreeCo ...

Issues with Braintree webhooks and CSRF protection causing malfunction

I have successfully set up recurring payments with Braintree and everything is functioning properly. Below is an example of my code: app.post("/create_customer", function (req, res) { var customerRequest = { firstName: req.body.first_name, lastN ...

Is there a way to verify the custom form when the braintree PayPal checkout button is clicked?

I am seeking a solution to validate a custom PHP form when the Braintree PayPal checkout button is clicked. Currently, the form redirects to the PayPal screen if it is not properly filled out. My goal is to prevent the PayPal popup window from opening if ...

Braintree drop-in feature now allows for automatic disabling of the submit button while the transaction

I've been struggling with a seemingly simple task that I just can't seem to figure out. I'm using Braintree's dropin UI and I have a submit button that I need to disable while the processing is happening, but I can't seem to find t ...

Using the API to set up a new plan in Braintree

Can I generate a Plan using the php API? The documentation states that a plan must be manually created from the account, but I'm interested in dynamically creating Plans directly from the system. ...

Leveraging Braintree Webhooks with a WordPress Website

Just dipping my toes into the world of web hooks, so please be patient with me :) I’m working on a WordPress plugin that integrates with Braintree’s payment processor using their API. I’ve got my forms all set up to submit transactions and they see ...

Integrating Braintree with Angular for accepting Android Pay transactions

Currently facing a challenge with Braintree that I need help resolving. I have successfully set up Braintree to generate my client_token using my API, and created the drop-in feature as a test. Here is how I implemented it: (function () { 'use st ...