Skip to content

Instantly share code, notes, and snippets.

@SendOTP
Last active May 10, 2016 11:50
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save SendOTP/bd37ad8403d0af1e2aa0 to your computer and use it in GitHub Desktop.
Save SendOTP/bd37ad8403d0af1e2aa0 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>
@Ashwin-Kapes
Copy link

success part of AJAX should be:

success: function(response){
console.log(response.message);
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment