RN Embed
The PortOne react native SDK offers merchants a seamless way to integrate the PortOne Payment Gateway into their react native applications, enabling them to accept payments securely and efficiently. This SDK serves as a bridge between a merchant's app and the PortOne Payment Gateway, providing a comprehensive set of features tailored specifically for handling payment transactions.
Follow the below steps to integrate the PortOne react native SDK with your react native Application.
Video Tutorial
The following video tutorials provide a detailed guide on integrating the PortOne RN SDK and using one of the payment method flow with your application to enable seamless payment processing:
Integration + Embed Flow
Sample App
Check the sample app to integrate on GitHub
Prerequisites
-
Create a PortOne Account
- Sign up on PortOne to access services and functionalities.
-
Access API Keys
- Log in to the PortOne portal to obtain API Keys (client key and secret key) under Settings -> API tab.
-
Enable Payment Channels and Methods
- Customize and enable payment channels and methods as per your requirements.
-
React Native Application
- Ensure you have a React Native application ready for SDK integration.
Integration
Steps to integrate your React native application with PortOne React native SDK.
1. Configure iOS for Deep Linking
-
To open your application, add the url schemes to the app, Go to info.plist and add it in source code
<key>CFBundleURLTypes</key> <array> <dict> <key>CFBundleTypeRole</key> <string>Editor</string> <key>CFBundleURLName</key> <string>checkout</string> <key>CFBundleURLSchemes</key> <array> <string>portone</string> </array> </dict> </array>
-
To open the other applications, should include the url schemes in info.plist
<key>LSApplicationQueriesSchemes</key> <array> <string>itms-appss</string> <string>zalopay</string> <string>line</string> <string>ascendmoney</string> </array>
-
To support HTTP connections, add this source code in app info.plist
<key>NSAppTransportSecurity</key> <dict> <key>NSAllowsArbitraryLoads</key> <true/> <key>NSAllowsLocalNetworking</key> <true/> <key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key> <true/> </dict>
2. Configure Android for Deep Linking
-
Update
AndroidManifest.xml
- Add intent filter ```xml <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:host="checkout" android:scheme="portone" /> </intent-filter> ```
if
redirectionUrl= "**portone://checkout"**
thenhost = "**checkout"** and schema = "**portone**"
3. Get JWT token from the server
To set up the process of obtaining a JWT token from the server, you need to construct a JWT token that accepts the portoneKey
as input. Here's an outline of the steps involved in setting up this process:
-
JWT Token Construction:
Implement the server-side logic to generate a JWT token using theÂ
portoneKey
 as a key component of the token payload. -
Token Retrieval in iOS App:
- Implement logic in your iOS application to make a server request to retrieve the JWT token using theÂ
portoneKey
. - Receive and store the returned token securely within the app for subsequent API authentication.
- Implement logic in your iOS application to make a server request to retrieve the JWT token using theÂ
Further information on JWT token generation is described in the link below.
4. Generate Signture Hash
- Generate a Signature Hash using HmacSHA256 which needs to be included in the payload.
- To generate a signature hash on the server side using a secret key follow the below steps.
5. Install the SDK
-
Download the compresses framework folder from this link (Access will be provided by the portone team)
-
Add the folder directly into your workplace and add the package inside the package.json
-
"dependencies": { "portone-sdk": "file:./PaymentSDK", }
-
Install the SDK and peer dependencies
npm install npm install @react-native-async-storage/async-storage npm install react-native-localization npm install react-native-webview npm install react-native-linear-gradient npm install react-native-rsa-native
6. Initialise PortOne RN SDK and authorise it.
- Import library of portone SDK
import {Checkout} from 'portone-sdk';
- Initialize the checkout instance as below:
<Checkout
callbackFunction={this.callbackFunction}
redirectUrl={"portone://"}
environment={"sanbox"} //Optional
appIdentifier={"AppUniqueID"} // Optional
/>
//appIdentifier: (unique App identifier) Passing the signature hash can be skipped if you whitelist your domain/IP/App.
// Do the needful in the callback function
callbackFunction = transactionDetails => {
console.log('Response from webview', transactionDetails);
};
Checkout using web (Embed)
PortOne's Checkout offers a streamlined integration experience, simplifying the process for merchants. This variant involves calling a single method with the essential payload, which results in the PortOne SDK opening a webpage seamlessly. By handling the user interface within the SDK, merchants can focus on the payment flow without concerns about UI intricacies.
-
To get the payment link to use the SDK checkout UI, call the openCheckoutUI method from SDK as below:
Checkout.openWebCheckoutUI(payload, JWTToken);
-
Web view response will be given back to the callbackFunction
callbackFunction = transactionDetails => { console.log('Response from webview', transactionDetails); // Do the needful };
Sample JWT Token
let jwtToken = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJDSEFJUEFZIiwic3ViIjoibHpyWUZQZnlNTFJPYWxsWiIsImlhdCI6MTYzMjM5MDkyMCwiZXhwIjoyNzMyMzkwOTIwfQ.IRgiM-zjAdJEVDuPSNfxmDszZQi_csE1q7xjVRvPvoc';
Sample Payload Response
let payload = {
portOneKey: 'SglffyyZgojEdXWL',
merchantDetails: {
name: 'PortOne',
logo: 'https://upload.wikimedia.org/wikipedia/commons/a/a6/Logo_NIKE.svg',
back_url: 'https://demo.chaipay.io/checkout.html',
promo_code: 'Downy350',
promo_discount: 0,
shipping_charges: 0.0,
},
merchantOrderId: 'MERCHANT' + new Date().getTime(),
signatureHash: 'flDFcPNx4pASRWonw52s0Sec3ee1PJQrdTklDrZGjq0=',
amount: totalAmount,
currency: 'VND',
countryCode: 'VN',
billingAddress: {
billing_name: 'Test',
billing_email: '[email protected]',
billing_phone: '9998878788',
billing_address: {
city: 'VND',
country_code: 'VN',
locale: 'en',
line_1: 'address',
line_2: 'address_2',
postal_code: '400202',
state: 'Mah',
},
},
shippingAddress: {
shipping_name: 'xyz',
shipping_email: '[email protected]',
shipping_phone: '1234567890',
shipping_address: {
city: 'abc',
country_code: 'VN',
locale: 'en',
line_1: 'address_1',
line_2: 'address_2',
postal_code: '400202',
state: 'Mah',
},
},
orderDetails: orderDetails,
successUrl: 'chaiport://checkout',
failureUrl: 'chaiport://checkout',
mobileRedirectUrl: 'chaiport://checkout',
expiryHours: 2,
source: 'api',
description: 'test',
showShippingDetails: true,
showBackButton: false,
defaultGuestCheckout: false,
isCheckoutEmbed: false,
};
Sample response :
- Success Case
{
"is_success": "true",
"status_code": "2000",
"status_reason": "SUCCESS",
"merchant_order_ref": "MERCHANT1234567890",
"channel_order_ref": "PAY-FylBOXjbTMmH52CCNI4OFw"
}
- Failure case
{
"is_success": "false",
"message": "Received error from Baokim Server: customer_phone=>The customer phone format is invalid., ",
"status_code": "5000",
"status_reason": "PAYMENT_SYSTEM_ERROR"
}
Payload
Payload
All of the web checkout request's parameters are listed here, along with the appropriate data type.
Parameters | Data Type | |
---|---|---|
portOneKey | String | mandatory |
merchantDetails | object | |
merchantOrderId | String | mandatory |
signatureHash | String | mandatory |
amount | Double | mandatory |
currency | String | mandatory |
countryCode | String | mandatory |
billingDetails | object | Optional |
shippingDetails | object | Optional |
orderDetails | array | Optional |
successUrl | String | mandatory |
failureUrl | String | mandatory |
expiryHours | Int | mandatory |
source | String | mandatory |
description | String | Optional |
showShippingDetails | Boolean | Optional |
showBackButton | Boolean | Optional |
defaultGuestCheckout | Boolean | Optional |
isCheckoutEmbed | Boolean | Optional |
redirectUrl | String | mandatory |
environment | String | mandatory |
**MerchantDetails**
Parameters | Data Type | |
---|---|---|
name | String | Optional |
logo | String | Optional |
back_url | String | Optional |
promo_code | String | Optional |
promoD_discount | Int | Optional |
shipping_charges | Double | Optional |
**BillingDetails**
Parameters | Data Type | |
---|---|---|
shipping_name | String | Optional |
shipping_email | String | Optional |
shipping_phone | String | Optional |
shipping_address | Object | Optional |
**ShippingDetails**
Parameters | Data Type | |
---|---|---|
billing_name | String | Optional |
billing_email | String | Optional |
billing_phone | String | Optional |
billing_address | Object | Optional |
**Address**
Parameters | Data Type | |
---|---|---|
city | String | Optional |
country_code | String | Optional |
locale | String | Optional |
line_1 | String | Optional |
line_2 | String | Optional |
postal_code | String | Optional |
state | String | Optional |
**OrderDetail**
Parameters | Data Type | |
---|---|---|
id | String | Optional |
price | Double | Optional |
name | String | Optional |
quantity | Int | Optional |
image | String (in the form of web url) | Optional |
Probable Errors
INVALID_UNAUTHORIZED_JWT_TOKEN_ERROR
INVALID_UNAUTHORIZED_JWT_TOKEN_ERROR
- Check whether PortOne Key and the Secret Key are of the same account
- Check whether the Secret Key is not modified
- Check whether
Bearer
keyword is added before the generated token with a white space.Bearer $jwtToken
- Verify if the expiration time should be greater than the current time
INVALID_UNAUTHORISED_TRANSACTION_SIGNATURE_ERROR
INVALID_UNAUTHORISED_TRANSACTION_SIGNATURE_ERROR
- Check whether all params match with the payload/request
- Check whether the portone key match with the payload and the account
INVALID_UNAUTHORISED_TRANSACTION_IAMPORTKEY_ERROR
INVALID_UNAUTHORISED_TRANSACTION_IAMPORTKEY_ERROR
- Check whether the portone key match with the payload and the account
INVALID_PAYMENT_CHANNEL
INVALID_PAYMENT_CHANNEL
- Make sure the payment channels and payment methods which are added in the payload are enable from the portone portal
INVALID_ENVIRONMENT
INVALID_ENVIRONMENT
- Make sure you have added environment either
sandbox
orlive
Summation of order value, tax, duties, shipping and discount is equal to amount
Summation of order value, tax, duties, shipping and discount is equal to amount
- If items are provided then please verify the values provided should match the total amount:Â
sum(items price * items quantity) + shipping charge - discount = amount
- Mandatory params in payload:
price
promo_discount (0 is also acceptable)
shipping_charges (0 is also acceptable)
Updated about 2 months ago