PHP + Quickbook 在线版(API 集成)?

发布于 2024-07-07 22:15:14 字数 153 浏览 8 评论 0原文

是否可以将我的基于 PHP Web 的电子商务应用程序与 Quickbook Online Edition 集成?

当我在网站上进行销售时,我希望能够在我的会计账簿中进行相应的日记帐分录。

请注意,我指的是 Quickbook 在线版,而不是桌面软件。

Is it possible to integrate my PHP web-based ecommerce application with Quickbook Online Edition?

When I make a sale on my web site, I would like to be able to make the corresponding journal entry in my accounting books.

Note, I'm referring to Quickbook Online Edition, not the desktop software.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

梦在深巷 2024-07-14 22:15:14

我现在已经构建了一组 PHP 类,以促进与 QuickBooks Online Edition 的通信。 它使与 QuickBooks Online Edition 的通信变得非常简单:

// Create the connection to QuickBooks
$API = new QuickBooks_API(...);

// Build the Customer object
$Customer = new QuickBooks_Object_Customer();
$Customer->setName($name);
$Customer->setShipAddress('134 Stonemill Road', '', '', '', '', 'Storrs', 'CT', '', '06268');

// Send the request to QuickBooks
$API->addCustomer($Customer, '_add_customer_callback', 15);

// The framework also supports processing raw qbXML requests
$API->qbxml('
    <CustomerQueryRq>
        <FullName>Keith Palmer Jr.</FullName>
    </CustomerQueryRq>', '_raw_qbxml_callback');

您可以从我的线程中下载该框架:
QuickBooks Online Edition PHP Package

我已经开始编写一些文档/有关如何将 Web 应用程序与 QuickBooks Online Edition 集成的提示,请参见此处:
QuickBooks 集成 wiki

I now have built a set of PHP classes that facilitates communication with QuickBooks Online Edition. It makes communicating with QuickBooks Online Edition as easy as:

// Create the connection to QuickBooks
$API = new QuickBooks_API(...);

// Build the Customer object
$Customer = new QuickBooks_Object_Customer();
$Customer->setName($name);
$Customer->setShipAddress('134 Stonemill Road', '', '', '', '', 'Storrs', 'CT', '', '06268');

// Send the request to QuickBooks
$API->addCustomer($Customer, '_add_customer_callback', 15);

// The framework also supports processing raw qbXML requests
$API->qbxml('
    <CustomerQueryRq>
        <FullName>Keith Palmer Jr.</FullName>
    </CustomerQueryRq>', '_raw_qbxml_callback');

You can download the framework from my thread here:
QuickBooks Online Edition PHP Package

I've started writing some documentation/tips on how to integrate web applications with QuickBooks Online Edition here:
QuickBooks Integration wiki

无语# 2024-07-14 22:15:14

是的,您可以将 qbXML 请求发送到 QuickBooks Online Edition,就像您可以将 qbXML 请求发送到 QuickBooks 的常规桌面版本一样。

下载 QuickBooks SDK 了解更多详细信息。

Yes, you can send qbXML requests to QuickBooks Online Edition, just as you can send qbXML requests to regular desktop editions of QuickBooks.

Download the QuickBooks SDK for more details.

瑾兮 2024-07-14 22:15:14

看起来 Quickbooks OE 有一个基于 XML 的 SDK,可从以下位置获取:

http:// /developer.intuit.com/technical_resources/default.aspx?id=1492

It looks like Quickbooks OE has an XML-based SDK, available at:

http://developer.intuit.com/technical_resources/default.aspx?id=1492

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文