Skip to content

Instantly share code, notes, and snippets.

@Ashwin-Kapes
Forked from SendOTP/Index.php
Created February 28, 2016 18:52
Show Gist options
  • Save Ashwin-Kapes/0e1fd83de70b2a44eb80 to your computer and use it in GitHub Desktop.
Save Ashwin-Kapes/0e1fd83de70b2a44eb80 to your computer and use it in GitHub Desktop.
SendOTP Client Side sample code JavaScript
<script type="text/javascript" src="jquery-2.1.4.min.js"></script>
<script type="text/javascript">
function sendOTP() {
var data = {"countryCode": "country code", "mobileNumber": "Mobile number to be verified"};
$.ajax({
url: 'http://Your-domain-name/path/sendotp.php?action=generateOTP',
type: 'POST',
dataType: 'json',
data: data,
success: function(data){
var resp = JSON.parse(response)
console.log(resp.status);
},
error: function(jqXHR, textStatus, ex) {
console.log(textStatus + "," + ex + "," + jqXHR.responseText);
}
});
}
function verifyOTP() {
var data = {"countryCode": "country code", "mobileNumber": "Mobile number to be verified","oneTimePassword":"One time password"};
$.ajax({
url: 'http://Your-domain-name/path/sendotp.php?action=verifyOTP',
type: 'POST',
dataType: 'json',
data: data,
success: function(data){
var resp = JSON.parse(response)
console.log(resp.status);
},
error: function(jqXHR, textStatus, ex) {
console.log(textStatus + "," + ex + "," + jqXHR.responseText);
}
});
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment