0

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

$.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);
    }
});
4

3 回答 3

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);
        }
    });
于 2012-09-04T05:58:19.063 回答
0
'authenticated_user_id'

据我所知,这是您应该寻找的会话中的糖 crm 项目,您是否要求这样做?

于 2012-09-03T10:02:56.413 回答
0

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

于 2012-09-04T03:46:15.970 回答