現在のセッションにログインしているユーザーを見つける必要があります。次のことを試しましたが、うまくいきません: 誰か助けてくれますか? 前もって感謝します!
$.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);
}
});