在 Mac 上以编程方式连接到 Quickbooks Online

发布于 2024-10-07 14:38:25 字数 131 浏览 4 评论 0原文

我希望使用 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 技术交流群。

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

发布评论

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

评论(1

凝望流年 2024-10-14 14:38:26

我已经在这里回答了您的问题:

我的 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.

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