我正在研究IBM Connections 3.0的Blog API 在IBM Docs中,我获得了有关如何推荐博客条目以及如何获取人们推荐的博客条目列表的详细信息。
我需要API详细信息,如何撤消我对特定博客的建议。
在Web上IBM连接正在调用/ blogs / roller-services / json来执行此操作,这需要" dangerousurlnonce"要发布,我找不到,我怎么能得到" dangerousurlnonce"任
- 维沙尔
答案 0 :(得分:0)
试试这个:
$.ajax({
url : 'blogs/roller-services/json/authcheck?entry=' + entryId,
success : function (data) {
// yes we need to use dojo here as the response is invalid json that only dojo can parse
dangerousurlnonce = dojo.fromJson('{' + data + '}').nonce;
}
});