- Posts: 6
- Thank you received: 0
var logoutPath = APP_URL + '/get/user/logout';
function logout(successCallback, errorCallback) {
$http({
method : "GET",
url: logoutPath
}).then(function(result) {
$window.sessionStorage.userInfo = null;
successCallback(result);
}, function(error) {
errorCallback(error);
});
}
{
"data": {
"status": "ko",
"error_code": "USR_LOF",
"error_description": "Logout failed"
},
"status": 200,
"config": {
"method": "GET",
"transformRequest": [
null
],
"transformResponse": [
null
],
"url": "http://avizier-aciee.online/api/get/user/logout",
"headers": {
"Accept": "application/json, text/plain, */*"
}
},
"statusText": "OK"
}
var logoutPath = APP_URL + '/get/user/logout?session_id=';
function login(loginObject, successCallback, errorCallback) {
$http.post(loginPath + '?username=' + loginObject.username + '&password=' + loginObject.password)
.success(function (data, status, headers, config) {
successCallback(data);
})
.error(function (data, status, headers, config) {
errorCallback(status);
});
}
ionic.bundle.js:18526 GET avizier-aciee.online/api/get/user/logout?session_id=undefined 403 (Forbidden)(anonymous function) @ ionic.bundle.js:18526sendReq @ ionic.bundle.js:18327serverRequest @ ionic.bundle.js:18043processQueue @ ionic.bundle.js:21888(anonymous function) @ ionic.bundle.js:21904$eval @ ionic.bundle.js:23100$digest @ ionic.bundle.js:22916$apply @ ionic.bundle.js:23205(anonymous function) @ ionic.bundle.js:53457eventHandler @ ionic.bundle.js:11713triggerMouseEvent @ ionic.bundle.js:2863tapClick @ ionic.bundle.js:2852tapTouchEnd @ ionic.bundle.js:2975
app-controller.js:52 Something happened at logout: Object {data: Object, status: 403, config: Object, statusText: "Forbidden"}config: Objectheaders: Objectmethod: "GET"transformRequest: Array[1]transformResponse: Array[1]url: "avizier-aciee.online/api/get/user/logout?session_id=undefined"__proto__: Objectdata: Objecterror_code: "USR_LOF"error_description: "Logout failed"status: "ko"__proto__: Objectheaders: (name)arguments: (...)caller: (...)length: 1name: ""prototype: Object__proto__: ()status: 403statusText: "Forbidden"__proto__: Object(anonymous function) @ app-controller.js:52(anonymous function) @ user-service.js:35processQueue @ ionic.bundle.js:21888(anonymous function) @ ionic.bundle.js:21904$eval @ ionic.bundle.js:23100$digest @ ionic.bundle.js:22916$apply @ ionic.bundle.js:23205done @ ionic.bundle.js:18358completeRequest @ ionic.bundle.js:18548requestLoaded @ ionic.bundle.js:18489
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
{
"status": "ok",
"userid": "482",
"username": "admin",
"session_id": "esh1cbv9qf3n5h3erlm0hgtbk1"
}
<endpoint>/get/user/logout?session_id=esh1cbv9qf3n5h3erlm0hgtbk1
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
ionic.bundle.js:18526 GET avizier-aciee.online/api/get/user/logout?session_id=e0810409f23dd5a79f2ea8dd9588613c 403 (Forbidden)
app-controller.js:52 Something happened at logout:
Object {data: Object, status: 403, config: Object, statusText: "Forbidden"}
temp1
Object {data: Object, status: 403, config: Object, statusText: "Forbidden"}
config
:
Object
data
:
Object
headers
:
(name)
status
:
403
statusText
:
"Forbidden"
__proto__
:
Object
Please Log in or Create an account to join the conversation.