× Requests and support related to jBackend.

Noob here - can't logout - USR_LOF

More
8 years 9 months ago - 8 years 9 months ago #5083 by joe10
Noob here - can't logout - USR_LOF was created by joe10
Hello..
I have a joomla back end.
I login to the app using the jbacked users api.
The login in successful, I receive a session_id.
The problem is, I really don't know how to logout. What do I need to do .
I have the following Angular code in my Cordova application:
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);
            });
        }

However, for this I receive the following response.
{
    "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"
}

I have also tried this :
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);
                });
        }

..for which I get tihs

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


I have also tried with setCredentials:true, and that gives me the wildcard thing.

Any clues please ?
Last edit: 8 years 9 months ago by joe10.

Please Log in or Create an account to join the conversation.

More
8 years 9 months ago #5089 by admin
Replied by admin on topic Noob here - can't logout - USR_LOF
Have you enabled "session id" on user module?

Please Log in or Create an account to join the conversation.

More
8 years 9 months ago #5097 by joe10
Replied by joe10 on topic Noob here - can't logout - USR_LOF
Hello. yes, I have.

Please Log in or Create an account to join the conversation.

More
8 years 9 months ago - 8 years 9 months ago #5098 by admin
Replied by admin on topic Noob here - can't logout - USR_LOF
Ok,
so after the login you will get something like:
{
  "status": "ok",
  "userid": "482",
  "username": "admin",
  "session_id": "esh1cbv9qf3n5h3erlm0hgtbk1"
}

In the case you are not using cookies (i.e. option withCredentials, see docs.angularjs.org/api/ng/service/$http), you can save the session_id and logout with:
<endpoint>/get/user/logout?session_id=esh1cbv9qf3n5h3erlm0hgtbk1

Kind regards,
Luigi
Last edit: 8 years 9 months ago by admin.

Please Log in or Create an account to join the conversation.

More
8 years 9 months ago #5099 by joe10
Replied by joe10 on topic Noob here - can't logout - USR_LOF
Thank you. I shall try. I'll come back with an answer.

Please Log in or Create an account to join the conversation.

More
8 years 9 months ago #5100 by joe10
Replied by joe10 on topic Noob here - can't logout - USR_LOF
Hello again !

I have tried that, ad it gives me the following :

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.

Time to create page: 0.173 seconds