...

/

Client Setup for Braintree

Client Setup for Braintree

Follow step-by-step instructions to set up a client application for Braintree.

Braintree provides us with different client-side SDKs such as Android, iOS, and JavaScript. These SDKs allow us to integrate Braintree functionality at the front-end of our applications.

The workflow of the events performed by our client using the Braintree SDK is shown below:

  1. Token request sent to the server
  2. Client token received from the server
  3. Payment information sent to Braintree to get a payment method nonce
  4. Payment method nonce received from Braintree
  5. Payment method nonce sent to the server

Let’s look into each of these steps in detail. (We will be looking into JavaScript SDK-based examples.)

Drop-in UI

Braintree’s ...