iOS Integration
To integrate with the CheckoutPro mobile SDK:
- Include the SDK in your app projectβ
- Set up the payment hashesβ
- βBuild the payment parametersβ
- βInitiate the paymentβ
- βHandle the payment completionβ
- Customization
Step 1: Include the SDK in your app project
CheckoutPro is a dynamic framework. If you are not using βuse_frameworks!β, add the following entries at the end of your podfile
:
$dynamic_framework = ['PayUAssetLibraryKit', 'PayUBizCoreKit', 'PayUCheckoutProBaseKit', 'PayUCheckoutProKit', 'PayUCustomBrowser', 'PayULoggerKit', 'PayUNetworkingKit', 'PayUUPICoreKit', 'Socket.IO-Client-Swift', 'Starscream']
$dynamic_framework = ['PayUAssetLibraryKit', 'PayUBizCoreKit', 'PayUCheckoutProBaseKit', 'PayUCheckoutProKit', 'PayUCustomBrowser', 'PayULoggerKit', 'PayUNetworkingKit', 'PayUUPICoreKit', 'Socket.IO-Client-Swift', 'Starscream','PayUParamsKit', 'PayUCrashReporter', 'PayUNetworkReachability']
pre_install do |installer|
Pod::Installer::Xcode::TargetValidator.send(:define_method, :verify_no_static_framework_transitive_dependencies) {}
installer.pod_targets.each do |pod|
if $dynamic_framework.include?(pod.name)
def pod.build_type;
Pod::BuildType.dynamic_framework
end
end
end
end
After updating the podfile
, install the pod using the command.
pod install
Step 2: Set up Payment hashes
This step describes how to pass the static and dynamic hashes. For detailed information, refer to Hash Generation.
Pass Static Hashes
To pass static hashes during integration, use the following code snippet:
var payUPaymentParams = {
key: "Merchant key",
...
...
...
additionalParam: {
payment_related_details_for_mobile_sdk: "payment_related_details_for_mobile_sdk hash",
vas_for_mobile_sdk: "vas_for_mobile_sdk hash",
payment: "Payment Hash"
}
}
Passing dynamic hashes
To pass dynamic hashes, the merchant will receive a call on the generateHash method. In the method parameter, you will receive a dictionary or hashMap, then extract the value of hashString from that. Pass that value to the server to append the Salt at the end and generate the sha512 hash over it. The server gives that hash back to your app, and the app will pass that hash to PayU through a callback mechanism. For passing dynamic hashes during integration, use the following code snippet:
generateHash = (e) => {
console.log(e.hashName);
console.log(e.hashString);
var hashStringWithoutSalt = e.hashString;
var hashName = e.hashName;
// Pass hashStringWithoutSalt to server
// Server will append salt at the end and generate sha512 hash over it
var hashValue = "<Set hash here which is fetched from server>";
var result = { [hashName]: hashValue };
PayUBizSdk.hashGenerated(result);
}
Step 3: Build the payment parameters
To initiate a payment, your app needs to send transactional information to the Checkout Pro SDK.
Parameter | Description |
---|---|
Keymandatory | String This parameter must contain your merchant key received from PayU. |
transactionIdmandatory | String It should be unique for each transaction. |
Amountmandatory | String Total transaction amount. |
productInfomandatory | String Information about the product. |
firstNamemandatory | String Customerβs first name. |
Emailmandatory | String Customerβs email id. |
Phonemandatory | String Customerβs phone number, Max character limit : 10 Digits |
ios_surlmandatory | String When the transaction gets successful, PayU will load this URL and pass the transaction response.Note: This field is applicable for iOS integration Sample URL: https://cbjs.payu.in/sdk/success |
ios_furlmandatory | String When the transaction fails, PayU will load this URL and pass the transaction response.Note: This field is applicable for iOS integration Sample URL: https://cbjs.payu.in/sdk/failure |
android_surlmandatory | String When the transaction gets successful, PayU will load this URL and pass the transaction response.Note: This field is applicable for Android integration |
Environmentmandatory | String Environment of SDK |
User Credentialmandatory | String This is used for the store card feature. PayU will store cards corresponding to passed user credentials and similarly, user credentials will be used to access previously saved cards. Format:<merchantKey>:<userId> Here, UserId is any id/email/phone number to uniquely identify the user. |
For details on Standing Instructions parameters, refer to PayU Standing Instruction Parameters.
Additional parameters
The additional parameters (optional) that can be passed to SDK are udf
parameters, static hashes, and other parameters. For more details on Static Hash generation and passing them, refer to Generate Hashes. The following is a list of parameters that can be passed in additional parameters:
Parameter | Description |
---|---|
PayUCheckoutProConstants.CP_UDF1 | String User-defined field, Merchant can store their customer id, etc. |
PayUCheckoutProConstants.CP_UDF2 | String User-defined field, Merchant can store their customer id, etc. |
PayUCheckoutProConstants.CP_UDF3 | String User-defined field, Merchant can store their customer id, etc. |
PayUCheckoutProConstants.CP_UDF4 | String User-defined field, Merchant can store their customer id, etc. |
PayUCheckoutProConstants.CP_UDF5 | String User-defined field, Merchant can store their customer id, etc. |
Static hashes | String The static hashes are specified in this parameter. For more information, refer to the Generate Hash. |
PayUCheckoutProConstants.SODEX_OSOURC_EID | String Sodexo Source ID, Merchant can store it from the third field of the PayU response. |
PaymentParamConstant.walletUrn | String Pass this parameter if closed loop wallet (clw) payment mode is enabled for your account. |
The payment parameters and additional parameters can be passed using the following code snippet:
var payUPaymentParams = {
key: "Merchant key",
transactionId: "Transaction Id",
amount: "Transaction amount",
productInfo: "product Info",
firstName: "Customer firstName",
email: "Customer email",
phone: "Customer phone",
ios_surl: "Success Url for iOS",
ios_furl: "Failure Url for iOS",
android_surl: "Success Url for Android",
android_furl: "Failure Url for Android",
environment: "0 or 1",//<0 for Production/1 for Staging>
userCredential: "key:CustomerID",
additionalParam: {
udf1: "user defined value 1",
udf2: "user defined value 2",
udf3: "user defined value 3",
udf4: "user defined value 4",
udf5: "user defined value 5",
payment_related_details_for_mobile_sdk: "payment_related_details_for_mobile_sdk hash",
vas_for_mobile_sdk: "vas_for_mobile_sdk hash",
payment: "Payment Hash",
walletUrn: "<walletUrn>"
},
payUSIParams: {
isFreeTrial:true,
billingAmount:'10',
billingInterval:1,
paymentStartDate:'2023-04-20',
paymentEndDate:'2023-04-30',
billingCycle:'daily', //Can be any of 'daily','weekly','yearly','adhoc','once','monthly'
remarks:'Test SI transcaction',
billingCurrency:'INR'
}
}
Step 4: Initiate the payment
Initialize and launch the Checkout Pro SDK by calling the following code snippet:
var paymentObject = {
payUPaymentParams: payUPaymentParams,
// payUCheckoutProConfig is optional
// Detail can be found in latter section
payUCheckoutProConfig: payUCheckoutProConfig
}
PayUBizSdk.openCheckoutScreen(paymentObject);
Step 5: Handle the payment completion
To get the callbacks for payment-related statuses, create a NativeEventEmitter object and subscribe to the below events.
import { NativeEventEmitter } from 'react-native';
//Register event emitters here.
componentDidMount() {
const eventEmitter = new NativeEventEmitter(PayUBizSdk);
this.paymentSuccess = eventEmitter.addListener('onPaymentSuccess', this.onPaymentSuccess);
this.paymentFailure = eventEmitter.addListener('onPaymentFailure', this.onPaymentFailure);
this.paymentCancel = eventEmitter.addListener('onPaymentCancel', this.onPaymentCancel);
this.error = eventEmitter.addListener('onError', this.onError);
this.generateHash = eventEmitter.addListener('generateHash', this.generateHash);
}
onPaymentSuccess = (e) => {
console.log(e.merchantResponse);
console.log(e.payuResponse);
}
onPaymentFailure = (e) => {
console.log(e.merchantResponse);
console.log(e.payuResponse);
}
onPaymentCancel = (e) => {
console.log('onPaymentCancel isTxnInitiated -' + e);
}
onError = (e) => {
console.log(e);
}
generateHash = (e) => {
console.log(e.hashName);
console.log(e.hashString);
var hashStringWithoutSalt = e.hashString;
var hashName = e.hashName;
// Pass hashStringWithoutSalt to server
// Server will append salt at the end and generate sha512 hash over it
var hashValue = "<Set hash here which is fetched from server>";
var result = { [hashName]: hashValue };
PayUBizSdk.hashGenerated(result);
}
//Do remember to unregister eventEmitters here
componentWillUnmount() {
this.paymentSuccess.remove();
this.paymentFailure.remove();
this.paymentCancel.remove();
this.error.remove();
this.generateHash.remove();
}
Step 6: Customization (optional)
For UPI Intent
Currently, PayU supports only PhonePe and GooglePay through Intent. Add the query schemes in info.plist
.
<key>LSApplicationQueriesSchemes</key>
<array>
<string>phonepe</string>
<string>tez</string>
<string>paytm</string>
</array>
Distributing your app (App Store / Ad-hoc)
What you get by default is a fat framework that allows you to test your app seamlessly on the device and simulator. But before archiving your app, you need to remove simulator slices from the framework. For detailed information on archiving your app with PayUChekoutPro, refer to Releasing the app.
Updated 4 months ago