Usage Guide
Learn how to use the @guiddini/react-native-epay SDK for seamless payments in your React Native app.
Getting Started
This guide covers how to use the @guiddini/react-native-epay SDK to initiate and manage payments in your React Native application.
1. Importing the SDK
Ensure you have installed the SDK as per the Installation Guide. Then, import the necessary modules:
2. Initializing a Payment
To start a payment transaction, use the initiatePayment
method from the useGPay
hook:
Response Object Structure:
Note
A webview will automatically open to handle the payment process and the user will be redirected back to your app after the transaction is completed.
3. Deep Linking for Payment Callback
Ensure your app has deep linking configured to handle payment results. Check the Installation Guide for setup instructions.
4. Handling Payment Results
After a transaction is completed, your app will receive the order_number
as a query parameter in the deep link. You can then fetch the transaction details using fetchTransaction
from useGPay
:
Transaction Object Structure:
5. Testing the Payment Flow
Before going live, test your integration using Guiddini’s sandbox environment. Use test API keys to simulate transactions.
6. Error Handling
Handle different error scenarios to enhance user experience:
Conclusion
With these steps, you can efficiently integrate and manage payments using @guiddini/react-native-epay.