Skip to content

DeveloperMode/in-app-payments-server-quickstart

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

In-App Payments Server Quickstart

This is an example server with a single endpoint of /chargeForCookie for processing payments using Square. The server expects a POST request with a payload of application/json following the format:

{
  "nonce": "INSERT_YOUR_NONCE_HERE"
}

Please replace "INSERT_YOUR_NONCE_HERE" with your own nonce this was generated from either the Square Payment Form or the In-App Payments SDK.

Instructions

Deploy to Heroku

  • Click the Deploy to Heroku button
  • Login or create a Heroku account
  • Enter a unique Heroku app name.
  • Go to the Square Application Dashboard and select your application.
  • Copy the Personal Access Token from the Credentials tab into the ACCESS_TOKEN field of the Heroku configuration page.
  • Specify the environment by setting API_BASE_PATH. Sandbox use - https://connect.squareupsandbox.com; Production use - https://connect.squareup.com
  • Click Deploy app
  • Copy https://[Heroku app name].herokuapp.com/chargeForCookie as your URL to POST to in your mobile application.

Example curl request you can make to the server:

curl -X POST 'https://[Heroku app name].herokuapp.com/chargeForCookie' \
  -H 'Content-Type: application/json' \
  -d '{ "nonce": "INSERT_YOUR_NONCE_HERE" }'

Start localhost server

  • Go to the Square Application Dashboard and select your application.

  • Copy the Personal Access Token from the Credentials tab into the ACCESS_TOKEN field of the Heroku configuration page.

  • Specify the environment by setting API_BASE_PATH. Sandbox use - https://connect.squareupsandbox.com; Production use - https://connect.squareup.com

  • Run the following command in the root folder of this project:

    PORT=8000 ACCESS_TOKEN={{Replace_with_personal_access_token}} API_BASE_PATH=https://connect.squareupsandbox.com node index.js

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%