I am new to Icenium Everlive and I am attempting to block logins by users who are not verified. My login and registration currently works using code like this:
function login() {
var user = {
"username": username.value,
"password": password.value,
"grant_type": "password"
};
$.ajax({
type: "POST",
url: 'https://api.everlive.com/v1/apikey/oauth/token',
contentType: "application/json",
data: JSON.stringify(user),
success: function(data) {
console.log(JSON.stringify(data));
verifyUser()
},
error: function(error) {
console.log(JSON.stringify(error));
alert('Invalid Username or Password');
}
})
}
However when attempting to determine if a user is verified I am kind of failing. I keep getting a 404 request from the server when I ask it for the user using the API suggestion of:
$.ajax({
url: 'https://api.everlive.com/v1/APIKEY/Users/me',
type: "GET",
headers: {"Authorization" : "Bearer ${AccessToken}"},
success: function(data) {
alert(JSON.stringify(data));
},
error: function(error) {
alert(JSON.stringify(error));
}
})
Any suggestions would be greatly appreciated.
(1) Download and use the Everlive Javascript SDK:
https://www.everlive.com/AllApps/ManageApp/DownloadSDK
This wrapper will make things easier by forming and handling your AJAX requests.
(2) Then you can do something like this to login user and then check if verified:
}