使用Javascript获取用户的Jive权限组列表

时间:2015-08-03 15:00:50

标签: javascript jquery jive

我正在尝试获取用户的Jive SBS权限组列表。如何用jQuery完成?

1 个答案:

答案 0 :(得分:3)

使用Jive v3 API并不是那么难。最糟糕的是你必须清理Jive的结果才能使它成为有效的JSON。谢天谢地,您可以使用Datafilter。

// We will use this as our data filter in the AJAX call

sanitizeJiveJsonResponse: function(response){
    return response.replace("throw 'allowIllegalResourceCall is false.';", '');
},

// You can get the logged in user id from the __jive variable. Including any sort     
// of JS in a Jive widget or tile will cause that code to run from an iframe, so      
// we're using window.parent to reference it

var userid = window.parent._jive_current_user.ID;
if(typeof userid == 'undefined'){
    // Error stuff here
}

$.ajax({

    url: '/api/core/v3/people/' + userid + '/securityGroups',
    context: document.body,
    dataType: 'json',
    dataFilter: function (data, type) {
        return sanitizeJiveJsonResponse(data);
    }

    }).done(function(result) {
        // Your success code here...
    });
};

希望这有帮助!