Nodejs Quick Start
Our nodejs SDK is the easiest way to integrate our app with a nodejs server, for this tutorial, we are going to work with expressjs, but it can work with any server you plan on using.
Prerequisite
To follow this tutorial, you need to have nodejs and a text editor of your choice installed on your computer.
Init a nodejs application
Create a new folder, enter that folder, open your terminal, and run the command below to initialize a nodejs application
Install the Dependencies
The following dependencies are needed for our app to work, express is a lightweight nodejs server, while flow-merchant-sdk-beta
is our official nodejs SDK.
Get your Secret key
Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.
You can generate an API key from your Dashboard at any time.
Create Route Handlers
Create a file name index.js
this file will contain all our code, open that file with your text editor, and copy and paste the snippet below into that file.
In the code snippet below, created an instance of the flow merchant, passing our secret key as an argument. We created two important route handlers, /pay
and /webhook
Start the server by running the command below, this command restart the server when ever there is a file change.
Request Payment
Add the following code snippet to the pay route handler, as shown below, In the code snippet we pass the request body into the FlowMerchant.requestPay
function, that returns a promise.
The FlowMerchant.requestPay
the method requires the following properties
amount
Yes
The amount of tokens needed
requestedToken
Yes
An integer that is either 0,1,2,3
0 : Flow Token, 1 : TUSD, 2 : TEUR, 3 : TGBP.
metadata
No
Object of any shape use in identifying a customer
redirectUrl
No
This is the URL you want to redirect the user to when their payment is successful.
A successful request will return a response like the one below, when you get this response you redirect the user to the payment link that has been generated.
Set your webhook endpoint
We use webhooks to send transaction results to your server once payment is made with our smart contract.
To set the webhook URL go to Integration Page and input your URL as shown below
Verify Payment
Add the following code snippet to the /webhook
route handler. When a transaction occurs, we send a post requests to the webhook URL, but this message needs to be verified to make sure it's comming from use, the FlowMerchant.verifyPay
method do the verification for us, it returns a promise, a positive .
Last updated