ALL, 我正在使用QBO V3 for PHP。我只有有限的PHP知识,对XML项目和JSON等一无所知。我建立了一个与在线快速书籍接口的网站,到目前为止我可以做时间跟踪,客户添加等我需要能够发送附件快速在线书籍,在PHP中找不到简单的例子。这是我用于上面创建的项目的类似格式,但附件中没有示例。他们的帮助指南也没有那么多。
// Load the OAuth information from the database
if ($Context = $IPP->context())
{
// Set the IPP version to v3
$IPP->version(QuickBooks_IPP_IDS::VERSION_3);
$ItemService = new QuickBooks_IPP_Service_Item();
$Item = new QuickBooks_IPP_Object_Item();
$Item->setName('My Item');
$Item->setType('Inventory');
$Item->setIncomeAccountRef('53');
if ($resp = $ItemService->add($Context, $realm, $Item))
{
print('Our new Item ID is: [' . $resp . ']');
}
else
{
print($ItemService->lastError($Context));
}
print('<br><br><br><br>');
print("\n\n\n\n\n\n\n\n");
print('Request [' . $IPP->lastRequest() . ']');
print("\n\n\n\n");
print('Response [' . $IPP->lastResponse() . ']');
print("\n\n\n\n\n\n\n\n\n");
}