A Javascript plugin to generate a dynamic payment request to Satispay service
Satispay allows you to perform microtransmissions completely free of charge (under € 10 Euros).
The service allows you to add a WebButton, so you can manage the payment from your application or website but the WebButton is not dynamic so you can generate this one only refreshing your webpage and only clicking on the default Satispay Button.
This plugin allows you to generate and open a dynamic window to get the payment from your users (and you can manage this with your classic events!)
In Desktop view:
In Mobile view:
The plugin is compatible with the majority of Web browsers and with Cordova / Phonegap applications
The plugin use the original Satispay library to generate a WebButton
Using NPM:
npm install satispay-javascript-plugin --save
OR Download and import the library with SCRIPT tag:
<script src="/path_to_your_assets/satispay.js"></script>
or minified version:
<script src="/path_to_your_assets/satispay.min.js"></script>
Before you can use the plugin, you need to initialize a Satispay object
var satispay = new Satispay(options);
Where the options are:
{
key : <String> Your merchant key,
webhook: <String> Your server URL hook,
sandbox: <Bool> Define if you are in Sandbox mode,
[key_sandbox: <String> Your sandbox merchant key]
}
After initialization of the object you can call the main method to launch the payment window:
satispay.newPayment(amount:<Int>,description:<String>,nameOfCallBackFunction:<String>);
- amount : The amount of your payment (e.g. use 200 for 2.00 €/$)
- description : The description for this payment, it will show into the window under the logo
- nameOfCallBackFunction : The name of your callback function, this will be called after the payment verification
//Define the options
var options = {
key : "YOUR_KEY",
webhook: "http://yourserver.yourdomain/webhook",
sandbox: false
}
//Initialize the Satispay object
var satispay = new Satispay(options);
//define a callback function
var cb = function(){
console.log("The coffee has been Paid!");
}
//Pay one coffee
satispay.newPayment(100,"Coffee Test","cb");
//OR with a click event (e.g. Jquery):
$("yourbutton_selector").on("click",function(){
satispay.newPayment(100,"Coffee Test","cb");
});
In Desktop view:
In Mobile view:
If you want to test the sandbox you will need to accept the self-signed certificate of Satispay staging server, to do this click on this link and accept the certificate: https://staging.online.satispay.com/
Contact me at fedyfausto@hotmail.com ;)