在 Mac 上以编程方式连接到 Quickbooks Online
我希望使用 Python 脚本以编程方式连接到 QuickBooks Online。据我了解,该 SDK 不适用于 Mac 平台。有没有一种简单的方法可以让我进行 qbXML 的 http post ?有什么 Python 库可以让它变得更容易吗?
I'm looking to programmatically connect to QuickBooks Online using a Python script. I understand that the SDK is not available for the Mac platform. Is there a simple way for me to do http post of qbXML? Any Python libraries that make it easier?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经在这里回答了您的问题:
我的 wiki 上有大量关于此的文档:
对于 QuickBooks Online,您绝对没有理由需要 SDK - 它不需要除了一些生成 qbXML 请求的 COM 对象(使用起来很痛苦)之外,不会给你任何东西。实际上,直接使用 Python 生成 qbXML 请求会更容易。
完成应用程序注册后,您只需向以下位置发出 HTTP POST 请求:
您将收到 qbXML 响应。
I already answered your question over here:
There's a ton of documentation on my wiki on this:
For QuickBooks Online, there's absolutely no reason you need the SDK- it doesn't give you anything except for some (pain in the butt to use) COM objects which generate qbXML requests. It's actually easier to just generate qbXML requests with straight Python instead.
Once you go through application registration, you can just make HTTP POST requests to:
And you'll get back qbXML responses.