Yammer Rest API用于发布状态

时间:2014-09-25 13:35:41

标签: jquery yammer

我是yammer的新手。我想使用Yammer RESTAPI在yammer上发布状态。 到目前为止我有这个代码

yam.platform.request({
    url: "https://api.yammer.com/api/v1/messages.json",
    method: "POST",
    data: {
        "body" : "message body",
        "group_id": "group id",
        "topic1": "topic1",
        "og_url": "http://www.google.com"
    },
    success: function (result) {
        alert("success");
        console.dir(result);
    },
    error: function (result) {
        alert("There was some error");
        console.dir(result);
    }
)};

此代码在yammer上发布状态,但它还显示了用

编写的警告框
error: function(result){
   alert("There was some error");
   console.dir(result);
}

我也改变了网址值 -

url: "messages.json",

但问题仍然存在。

任何人都可以知道这将如何运作.. ???

1 个答案:

答案 0 :(得分:2)

看看我们的代码,似乎我们只传入资源而不是完整的URL(见下文)

yam.platform.request(
{
    url: "messages/private.json",
    method: "GET",
    success: function (response) {
        console.log(response);
    },
    error: function (response) {
        alert("There was an error with the request.");
    }
});