如何获取登录当前会话的用户的ID?

时间:2012-09-03 09:55:41

标签: javascript jquery jquery-mobile sugarcrm

我需要找到登录当前会话的用户。我尝试了以下但不起作用: 谁能帮我?提前致谢!

$.get(CurrentServerAddress + '/service/v4/rest.php', {
    method: "get_user_id",
    input_type: "JSON",
    response_type: "JSON",
    rest_data:'"new_get_user_id":["session":"' + SugarSessionId + '"]'
}, function(data) {
    if (data !== undefined) {
        var userID = jQuery.parseJSON(data);
    }
});

3 个答案:

答案 0 :(得分:2)

我尝试了以下内容,它对我有用。

var userID = '';
    $.get(CurrentServerAddress + '/service/v4/rest.php', {
        method: "get_user_id",
        input_type: "JSON",
        response_type: "JSON",
        rest_data: '[{"session":"' + SugarSessionId + '"}]'
    }, function(data) {
        if (data !== undefined) {
            userID = jQuery.parseJSON(data);
        }
    });

答案 1 :(得分:0)

'authenticated_user_id'

据我所知,这是你应该寻找的会议中的糖crm项目,你要求吗?

答案 2 :(得分:0)

您正在进行的REST调用要求您拥有SESSION令牌。通常,我们将在我们的CRM上设置一个 REST 用户,可以通过REST访问。