Quickbooks web API - 从 quickbooks 中提取数据
Quickbooks web API - Pulling data from quickbooks
我希望能够从我有权访问的现有在线 QB 设置中提取数据,特别是作为特定父帐户的子帐户的所有客户数据。然后我想将数据添加到 html table。这可能吗?如果可以,我从哪里开始?谢谢
Is this possible
是的。
where do I start?
如果我是你...我会从搜索开始。这个问题在 Whosebug 上得到了一遍又一遍的回答,而且还有大量的 Google 结果。
但是...这里有一个概述:
- 从GitHub获取一些开源代码:https://github.com/consolibyte/quickbooks-php
按照链接到 GitHub 页面的快速入门指南进行操作:http://www.consolibyte.com/docs/index.php/PHP_DevKit_for_QuickBooks_-_Intuit_Partner_Platform_Quick-Start
快速入门指南基本上会引导您使用 Intuit 创建应用程序注册、设置一些配置等。所有真正的细节都在 QuickBooks developer 网站上大量记录的细节。
查看上述QuickBooksPHP开源代码的docs/目录。有很多查询 QuickBooks Online 数据的例子。具体来说,您可能需要一些如下所示的代码:
$CustomerService = new QuickBooks_IPP_Service_Customer();
$customers = $CustomerService->query($Context, $realm, "SELECT * FROM Customer MAXRESULTS 25");
foreach ($customers as $Customer)
{
print('Customer Id=' . $Customer->getId() . ' is named: ' . $Customer->getFullyQualifiedName() . '<br>');
}
我希望能够从我有权访问的现有在线 QB 设置中提取数据,特别是作为特定父帐户的子帐户的所有客户数据。然后我想将数据添加到 html table。这可能吗?如果可以,我从哪里开始?谢谢
Is this possible
是的。
where do I start?
如果我是你...我会从搜索开始。这个问题在 Whosebug 上得到了一遍又一遍的回答,而且还有大量的 Google 结果。
但是...这里有一个概述:
- 从GitHub获取一些开源代码:https://github.com/consolibyte/quickbooks-php
按照链接到 GitHub 页面的快速入门指南进行操作:http://www.consolibyte.com/docs/index.php/PHP_DevKit_for_QuickBooks_-_Intuit_Partner_Platform_Quick-Start
快速入门指南基本上会引导您使用 Intuit 创建应用程序注册、设置一些配置等。所有真正的细节都在 QuickBooks developer 网站上大量记录的细节。
查看上述QuickBooksPHP开源代码的docs/目录。有很多查询 QuickBooks Online 数据的例子。具体来说,您可能需要一些如下所示的代码:
$CustomerService = new QuickBooks_IPP_Service_Customer();
$customers = $CustomerService->query($Context, $realm, "SELECT * FROM Customer MAXRESULTS 25");
foreach ($customers as $Customer)
{
print('Customer Id=' . $Customer->getId() . ' is named: ' . $Customer->getFullyQualifiedName() . '<br>');
}