/
home
/
obinna
/
html
/
boazapp
/
vendor
/
africastalking
/
africastalking
/
example
/
public
/
js
/
Upload File
HOME
"use strict"; $(function () { function log(message) { $("#response").text(message); $('pre span').each(function(i, block) { hljs.highlightBlock(block); }); } $("#signUp").click(() => { let phone = $("#phone").val(); if (!phone) { log(JSON.stringify({ error: "Enter a phone number"}, null, 2)); return; } log("Sending SMS..."); $.ajax({ type: "POST", url: `/auth/register/${phone}`, success: (resp) => { try { log(JSON.stringify(resp, null, 2)); } catch (ex) { log(resp); } } }); }); $("#airtime").click(() => { const phone = $("#phone").val(); const amount = $("#amount").val(); if (!phone) { log(JSON.stringify({ error: "Enter a phone number"}, null, 2)); return; } if (!amount) { log(JSON.stringify({ error: "Enter an amount (with currency) e,g, KES 334"}, null, 2)); return; } log("Sending Airtime..."); $.ajax({ type: "POST", url: `/airtime/${phone}?amount=${amount}`, success: (resp) => { try { log(JSON.stringify(resp, null, 2)); } catch (ex) { log(resp); } } }); }); $("#mobileCheckout").click(() => { const phone = $("#phone").val(); const amount = $("#mobileCheckoutAmount").val(); if (!phone) { log(JSON.stringify({ error: "Enter a phone number"}, null, 2)); return; } if (!amount) { log(JSON.stringify({ error: "Enter an amount (with currency) e,g, KES 334"}, null, 2)); return; } log("Initiating Mobile Checkout..."); $.ajax({ type: "POST", url: `/mobile/checkout/${phone}?amount=${amount}`, success: (resp) => { try { log(JSON.stringify(resp, null, 2)); } catch (ex) { log(resp); } } }); }); $("#mobileB2C").click(() => { const phone = $("#phone").val(); const amount = $("#mobileB2CAmount").val(); if (!phone) { log(JSON.stringify({ error: "Enter a phone number"}, null, 2)); return; } if (!amount) { log(JSON.stringify({ error: "Enter an amount (with currency) e,g, KES 334"}, null, 2)); return; } log("Initiating Mobile B2C..."); $.ajax({ type: "POST", url: `/mobile/b2c/${phone}?amount=${amount}`, success: (resp) => { try { log(JSON.stringify(resp, null, 2)); } catch (ex) { log(resp); } } }); }); });