Anil
Anil

Reputation: 11

Programmatically connecting to Quickbooks Online on a Mac

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?

Upvotes: 1

Views: 1279

Answers (1)

Keith Palmer Jr.
Keith Palmer Jr.

Reputation: 27962

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.

Upvotes: 4

Related Questions