1

我正在尝试 Wunderlist API 并一直在关注这个有用的教程。他们还在Github 上提供了一个演示。它适用于 GET 调用(和 PATCH),但是当我尝试使用 POST 请求创建新任务时,它返回错误请求,客户端错误:400。

WunderlistClient.php

public function createTask($name, $list_id, $task = []) {
    if (!is_numeric($list_id)) {
        throw new \InvalidArgumentException('The list id must be numeric.');
    }
    $task['name'] = $name;
    $task['list_id'] = $list_id;
    $response = $this->client->post('tasks', ['body' => json_encode($task)]);
    $this->checkResponseStatusCode($response, 201);
    return json_decode($response->getBody());
}

索引.php

try {
    $created = $wunderlist->createTask('New Task', $list_id);
    dump($created);
}
catch(\Exception $exception) {
    dump($exception);
}

我添加了一个 createList 函数,它只需要标题,并且确实有效。

public function createList($title, $list = []) {
    $list['title'] = $title;
    $response = $this->client->post('lists', ['body' => json_encode($list)]);
    $this->checkResponseStatusCode($response, 201);
    return json_decode($response->getBody());
}

为什么我无法创建任务

4

1 回答 1

1

我只需要将“名称”切换为“标题”。

public function createTask($title, $list_id, $task = []) {
    if (!is_numeric($list_id)) {
        throw new \InvalidArgumentException('The list id must be numeric.');
    }
    $task['title'] = $title;
    $task['list_id'] = $list_id;
    $response = $this->client->post('tasks', ['body' => json_encode($task)]);
    $this->checkResponseStatusCode($response, 201);
    return json_decode($response->getBody());
}
于 2018-09-06T14:35:13.053 回答