我可以利用這個得到了Trello API數據:Trello API:在一次通話中獲取成員,附件和卡片信息?
private function get_card_info($card_id) {
$client = new \GuzzleHttp\Client();
$base = $this->endpoint . $card_id;
$params = "?key=" . $this->api_key . "&token=" . $this->token;
$cardURL = $base . $params;
$membersURL = $base . "/members" . $params;
$attachmentsURL = $base . "/attachments" . $params;
$response = $client->get($cardURL);
$this->card_info['card'] = json_decode($response->getBody()->getContents());
$response = $client->get($membersURL);
$this->card_info['members'] = json_decode($response->getBody()->getContents());
$response = $client->get($attachmentsURL);
$this->card_info['attachments'] = json_decode($response->getBody()->getContents());
}
然而,這分爲三個電話。是否有辦法在一次通話中獲取卡信息,會員信息和附件信息? docs提及使用&fields=name,id
,但似乎只限制從基本呼叫返回到cards
端點的內容。
每次我需要卡片信息時,必須每次擊中API 3次都是荒謬的,但我找不到任何收集所有需要的示例的例子。
我會檢查一旦我回到我的個人筆記本電腦回家。這是在任何地方的文檔? –