Last active
March 30, 2021 19:22
-
-
Save SendOTP/11ffac9a4b98c136bbed to your computer and use it in GitHub Desktop.
SendOTP: Client Side flow sample code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript" src="jquery-2.1.4.min.js"></script> | |
<script type="text/javascript"> | |
function sendOTP() { | |
var data = JSON.stringify({countryCode: "country code", mobileNumber: "Mobile number to be verified"}); | |
$.ajax({ | |
url: 'https://sendotp.msg91.com/api/generateOTP', | |
type: 'POST', | |
crossDomain: true, | |
processData: false, | |
contentType: 'application/json', | |
headers: {'Access-Control-Allow-Origin': '*'}, | |
beforeSend: function (request) | |
{ | |
request.setRequestHeader("Package-Name", "Your domain name."); | |
request.setRequestHeader("Secret-Key", "Your 8 character password."); | |
}, | |
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 = JSON.stringify({countryCode: "country code", mobileNumber: "Mobile number to be verified",oneTimePassword:"One time password"}); | |
$.ajax({ | |
url: 'https://sendotp.msg91.com/api/verifyOTP', | |
type: 'POST', | |
crossDomain: true, | |
processData: false, | |
contentType: 'application/json', | |
headers: {'Access-Control-Allow-Origin': '*'}, | |
beforeSend: function (request) | |
{ | |
request.setRequestHeader("Package-Name", "Your domain name."); | |
request.setRequestHeader("Secret-Key", "Your 8 character password."); | |
}, | |
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