
Security News
Feross on Risky Business Weekly Podcast: npm’s Ongoing Supply Chain Attacks
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
hyper-sdk-plugin
Advanced tools
Cordova plugin for HyperSDK which enables payment orchestration via different dynamic modules. More details available at https://developer.juspay.in/v2.0/docs/introduction . Some part of module depends heavily on native functionalities and are not updatab
. Cordova plugin for HyperSDK which enables payment orchestration via different dynamic modules. More details available at Juspay Developer Docs for Express Checkout SDK and Payment Page SDK. Some part of module depends heavily on native functionalities are not updatable dynamically.
The minimum version of cordova-android supported with HyperSDK is 10.0.0 which uses androidx
and AppCompatActivity
.
Latest versions of HyperSDK supports IOS Version 12 and Above. Check Release Notes for more information.
SDK is available as a node dependency via:
cordova plugin add hyper-sdk-plugin
Update your clientId provided by Juspay Support Team in the ext block of the root(top) build.gradle file present under platforms/android/build.gradle
.
ext {
clientId = "<clientId provided by Juspay Team>"
hyperSDKVersion = "2.1.25"
}
Optionally, you can also provide an override for base SDK version present in plugin (the newer version among both would be considered).
Update your clientId provided by Juspay Support Team in the MerchantConfig.txt
file present under platforms/ios/
clientId = <clientId shared by Juspay Team>
Add the following post_install script in the Podfile (ios/Podfile
)
post_install do |installer|
fuse_path = "./Pods/HyperSDK/Fuse.rb"
clean_assets = true
if File.exist?(fuse_path)
if system("ruby", fuse_path.to_s, clean_assets.to_s)
end
end
end
Create an instance for HyperSDK cordova plugin by using:
hyperSDKRef = cordova.plugins.HyperSDKPlugin
This method should be called on the render of the host screen. This will boot up the SDK and start the Hyper engine. It takes a stringified JSON
as its argument which will contain the base parameters for the entire session and remains static throughout one SDK instance lifetime.
To call initiate, use the following snippet:
var completePayload = {
"requestId": "8cbc3fad-8b3f-40c0-ae93-2d7e75a8624a",
"service" : "in.juspay.service", // service will be different as per integration.
"payload" : {
"action": "initiate",
"merchantKeyId": "<merchantKeyId shared by Juspay Team>",
"merchantId": "<merchantId shared by Juspay Team>",
"clientId": "<clientId shared by Juspay Team>",
"customerId": "customer_id",
"environment": "sandbox"
}
}
hyperSDKRef.initiate(JSON.stringify(completePayload), hyperSDKCallback);
// Define callback to handle different events from the SDK.
var hyperSDKCallback = function (response) {
try {
var parsedData = JSON.parse(response);
var event = parsedData["event"];
switch (event) {
case "show_loader": {
// Show some loader here
}
break;
case "hide_loader": {
// Hide Loader
}
break;
case "initiate_result": {
// Get the payload
console.log("initiate result: ", parsedData)
}
break;
case "process_result": {
// Get the payload
console.log("process result: ", parsedData)
}
break;
default:
//Error handling
break;
}
} catch (error) {
//Error handling
console.log(error);
}
}
Payment Page - All payload ref is available at HyperSDK Payment page doc. EC Headless - All payload ref is available at HyperSDK EC doc.
Process api helps with all the required operation to be triggered via HyperSDK. Responses and various events triggered are streamed back to callback passed in Initiate.
// Please refer to the documentation links attached below for payload parameters
var completePayload = {
"requestId": "8cbc3fad-8b3f-40c0-ae93-2d7e75a8624a",
"service" : "in.juspay.service", // service will be different as per integration.
"payload" : {
"action": "paymentPage",
"merchantKeyId": "<merchantKeyId shared by Juspay Team>",
"merchantId": "<merchantId shared by Juspay Team>",
"clientId": "<clientId shared by Juspay Team>",
"customerId": "customer_id",
"environment": "sandbox",
"signaturePayload": "signaturePayloadString",
"signature": "signature"
}
}
hyperSDKRef.process(JSON.stringify(completePayload));
Process payload - All payload ref is available at HyperSDK process.
This is a helper / optional method to check whether SDK has been initialised after step-2. It returns a boolean
value in the callback function.
hyperSDKRef.isInitialised((response) => {
// Make process call here if response is true
});
Hyper SDK
internally uses an android fragment for opening the bank page and will need the control to hardware back press when the bank page is active. To make sure this works properly with this plugin, add eventListenr on backbutton
event.
If the blocking asynchronous call hyperSDKRef.onBackPress
returns true in callback response that means Hyper SDK
will handle the back press, else merchant can handle it.
document.addEventListener("backbutton", onBackKeyDown)
function onBackKeyDown() {
hyperSDKRef.onBackPress(function (response) {
if(!response) {
// Your implementation to hanlde hardware backpress.
} else {
// SDK handles the backpress.
}
});
}
This method shall be triggered when HyperSDK
is no longer required.
hyperSDKRef.terminate();
hyper-sdk-plugin (HyperSDK Cordova) is distributed under AGPL-3.0-only license.
FAQs
Cordova plugin for HyperSDK which enables payment orchestration via different dynamic modules. More details available at https://developer.juspay.in/v2.0/docs/introduction . Some part of module depends heavily on native functionalities and are not updatab
The npm package hyper-sdk-plugin receives a total of 191 weekly downloads. As such, hyper-sdk-plugin popularity was classified as not popular.
We found that hyper-sdk-plugin demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 11 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.