简体   繁体   English

对于任何在线用户,如何将Quickbooks在线基本帐户连接到我们的Web托管网站?

[英]How Connect Quickbooks online essential account to our web hosted website for any online users?

Is there any way Or API available in PHP which automatically enter any customer records with billing and shipping information and products information which product they buy from our site and what amount they pay for that products added into our quick book online essential account ? PHP中有没有可用的方法或API自动输入任何客户记录以及帐单和运输信息以及产品信息,这些客户记录是他们从我们的网站上购买的产品以及他们为该产品支付的金额添加到了我们的在线快速基本帐户中?

we have our quick book online essential account, but now I have to integrate that account with our hosted application and automatically insert, update that delete that customer's records and invoices into our quick book essential account ? 我们有我们的快速预订在线基本帐户,但是现在我必须将该帐户与托管应用程序集成,并自动插入,更新以删除该客户的记录和发票到我们的快速预订基本帐户中?

We have cloths products for sell in our website.which have QBMS and PAYPAL for payment gateway. 我们的网站上有出售的布料产品,其中有QBMS和PAYPAL作为支付网关。

Please let me know is there any possibility like this ? 请让我知道这样的可能性吗?

I have read developer.intuit.com/docs/0025_quickbooksapi but not getting too much idea. 我已经阅读了developer.intuit.com/docs/0025_quickbooksapi,但没有太多想法。

Please note I want to add,edit delete customer's records and invoice receipt, which will be fill up in our website, our website's customer didn't have any quick book account, they will pay by credit cards OR pay pal account. 请注意,我要添加,编辑,删除客户的记录和发票收据,这将在我们的网站上填写,我们的网站的客户没有任何快速预订帐户,他们将通过信用卡或Pay pal帐户付款。 So is there any way to adding all these information in quick book online data. 因此,有什么方法可以将所有这些信息添加到快速预订的在线数据中。 there is api that I already read that document but there is no code samples available that will connect our website data to our quick book online account. 我已经阅读过该文档的api,但是没有可用的代码示例将我们的网站数据连接到我们的快速预订在线帐户。 So is there any way OR it is not possible to connect any online users to our quick book account ? 那么有什么办法还是无法将任何在线用户连接到我们的快速预订帐户?

From where I have to start for integrating quick book online essential and our web site? 从哪里开始,我必须整合快速在线书籍和我们的网站? Please let me know. 请告诉我。

Thank You 谢谢

Yes Nimisha, I am using same PHP dev kit from keith palmer. 是的Nimisha,我使用的是来自Keith Palmer的相同PHP开发工具包。 I am sucessfully able to create QBOE and QBMS applications in "PRODUCTION" mode. 我可以在“生产”模式下成功创建QBOE和QBMS应用程序。 But I am stuck in QBXML code. 但是我陷入了QBXML代码中。 It will respond me blank. 它将使我空白。 and I am not able to PUSH data from my website to quick book online essential account. 而且我无法从我的网站中推送数据来快速预订在线基本帐户。 Below is my code, 下面是我的代码,

<?qbxml version="6.0"?>
<QBXML>
    <SignonMsgsRq>
        <SignonDesktopRq>
       <ClientDateTime>2013-10-04T12:49:04</ClientDateTime>
            <ApplicationLogin>********************</ApplicationLogin>
            <ConnectionTicket>********************</ConnectionTicket> 
            <Language>English</Language>
            <AppID>************</AppID>
            <AppVer>1</AppVer>
        </SignonDesktopRq>
    </SignonMsgsRq>
</QBXML>
HTTP/1.1 200 OK Date: Fri, 04 Oct 2013 06:13:21 GMT Server: Apache/1.3.41 (Unix) mod_ssl/2.8.31 OpenSSL/0.9.8r ApacheJServ/1.1.2
Content-Type: text/plain Transfer-Encoding: chunked

<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
<!DOCTYPE QBXML PUBLIC "-//INTUIT//DTD QBXML QBO 6.0//EN" "http://apps.quickbooks.com/dtds/qbxmlops60.dtd">
 <QBXML>
    <SignonMsgsRs>
    <SignonDesktopRs statusCode="2000" statusMessage="Application agent not found **************" statusSeverity="ERROR">
    <ServerDateTime>2013-10-04T06:13:47</ServerDateTime>
    </SignonDesktopRs></SignonMsgsRs>
 </QBXML>

Please provide me some help for push data to quickbook online essential account. 请为我提供一些帮助,以将数据推送到quickbook在线基本帐户。

If you are talking about a custom integration using SDK with QBO/QBD Apis, then it is not supported. 如果您在谈论使用SDK与QBO / QBD Apis进行自定义集成,则不支持该集成。 You cannot automatically pass data from you site to QBO account as manual intervention is a must for the QBO/QBD Apis as you get the access to your company file only after the 3-legged OAUTH flow. 您无法自动将数据从站点传递到QBO帐户,因为QBO / QBD Apis必须进行手动干预,因为只有在三足式OAUTH流程之后才能访问公司文件。 To add to that, we currently have sample apps available only in .net and java. 除此之外,我们目前仅提供.net和java中的示例应用程序。 We are soon going to release a PHP one too. 我们很快也将发布一个PHP。 https://developer.intuit.com/docs/0025_quickbooksapi/0055_devkits/sample_code https://developer.intuit.com/docs/0025_quickbooksapi/0055_devkits/sample_code

If however, you see a possibility that users can login and complete the OAUTH flow, then please check this out- https://developer.intuit.com/docs/0025_quickbooksapi/0010_getting_started 但是,如果您发现用户可以登录并完成OAUTH流程的可能性,请检查此内容-https ://developer.intuit.com/docs/0025_quickbooksapi/0010_getting_started

For custom integration, you might want to look at the QBXML- https://developer.intuit.com/docs/0025_quickbooksapi/0055_devkits/0250_qb 对于自定义集成,您可能需要查看QBXML- https://developer.intuit.com/docs/0025_quickbooksapi/0055_devkits/0250_qb

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM