
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@juspay/ec-headless-cordova-plugin
Advanced tools
A Cordova plugin for the Juspay Express Checkout Headless Sdk
JusPay has a native android and iOS client which can be used by PhoneGap applications. To get started, you first need to download the code for the plugin.
This requires phonegap/cordova CLI 5.0+
Add the plugin to your phonegap/cordova apps using these commands.
$ phonegap plugin add @juspay/ec-headless-cordova-plugin
(or)
$ cordova plugin add @juspay/ec-headless-cordova-plugin
To add or change ec-hl-cordova-plugin specific dependencies, refer this file.
platforms/android/ec-hl-cordova-plugin/<appname>-_plugin-dependencies.gradle
Minimum supported iOS version: 9.0
If you are getting the pod error like Failed to install 'ec-hl-cordova-plugin': Error: pod: Command failed with exit code 1
while installing "ec-hl-cordova-plugin" for ios, please update platform :ios
to '9.0' in the Podfile and run the command pod install
.
var nbPayload = {
opName: "nbTxn",
paymentMethodType: "NB",
paymentMethod: "enter bank code", // Eg: NB_SBI
redirectAfterPayment: "true",
format: "json"
}
//Here payload format is specified for netbanking transaction. For other operations, refer
[EC SDK Doc - Android](https://developer.juspay.in/docs/android)
[EC SDK Doc - iOS](https://developer.juspay.in/docs/ios-payments-sdk-integration)
var requestPayload = {
baseParams: {
merchant_id: "pass merchant id",
client_id: "pass client id",
transaction_id: "pass transaction id", //optional
order_id: "pass order id",
amount: "amount", //eg: "1.00"
customer_id : "pass customer id",
customer_email : "pass email",
customer_phone_number : "pass phone number",
environment: "pass environment" //eg: "sandbox" or "prod"
},
serviceParams: {
service: "in.juspay.ec",
session_token: "pass client auth token",
end_urls: [], //eg: ["https://www.reload.in/recharge/", ".*www.reload.in/payment/f.*"]
payload: JSON.stringify(nbPayload)
},
customParams: {}, //customParams are optional key value pairs. { udf_circle: "Andhra Pradesh" }
onSuccess: function (successResponse) {
console.log("Success Response", successResponse);
},
onError: function (errorResponse) {
console.log("Error Response", errorResponse);
}
}
var expressCheckout = new ExpressCheckout();
expressCheckout.startPayment(requestPayload);
1.1.6
FAQs
A Cordova plugin for the Juspay Express Checkout Headless Sdk
We found that @juspay/ec-headless-cordova-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 9 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.