此处有关堆栈溢出的许多问题都适用于更改项目或不使用Rest API。这是一个最终回答这个问题的机会(因为它也不在文档中)。 “运行$client->get()
之后,如何访问返回的内容的特定属性。例如,当我使用PHP访问特定产品时,我想访问其属性。目前,我拥有:
public function get_line_item_attributes(Line_Item $line_item)
{
try {
$product = $this->client->get('products/' . $line_item->get_product_id());
return $product['attributes'];
} catch (Exception $e) {
return $this->format_error($e);
}
}
但是我感觉这是不正确的。现在很难测试,我将必须访问许多属性才能完成此项目。我到处都在寻找这个答案。它只是不在那里。