0

我在使用 Javascript 的 Live REST API 上有一个真正的问题。

实际上,我正在尝试从用户 id 获取联系人(登录后)并插入新的。但我有一个“标题”问题。

这是我的连接功能:

$(window).ready(function() {
    $("#ifConnect").hide();

    WL.login({
        scope: "wl.signin, wl.basic, wl.emails, wl.contacts_create"
    }).then(
        function (response) {
            loadContacts(); //which load properly my contacts
        }
    );
});

这是我创建的联系方式:

var contact = { 
    first_name: "First", 
    last_name: "Last"
};

WL.api({
    path: "me/contacts", 
    method: "POST",
    body: contact
}).then(
    function (response) {
        alert(JSON.stringify(response));
    },
    function (response) {
        alert(JSON.stringify(response));
    }
);

不幸的是,调用了第二个函数,并给我一个标题警报: {"error":{"code":"request_body_invalid_media_type","message":"The request doesn't include a Content-Type header."}}

有人可以帮助我吗?非常感谢 !

4

1 回答 1

0

错误描述信息量很大。尝试将 Content-Type 设置为application/json或将正文放在本例中:

 function (response) {
         WL.api({
            path: "me/contacts",
            method: "POST",
            body: {
                "first_name": "First",
                "last_name": "Last"
            } 
于 2012-12-11T18:56:59.400 回答