skillfed

intuit-oauth

Intuit OAuth Client

intuit-oauth v1.2.7 1.8M downloads/30d#3,544 on PyPI85
Permissive license Apache 2.0 Active released

What it is and what it does

intuit-oauth is the official Python client for Intuit's OAuth2 and OpenID Connect authentication. It handles the full token lifecycle—requesting access tokens, refreshing them, and revoking them—plus ID token validation and user profile retrieval from the Intuit UserInfo API. The library is designed to work with QuickBooks Accounting API, QuickBooks Payments API, and related Intuit services.

The package wraps HTTP authentication flows using requests, requests_oauthlib, and pyjwt, abstracting away the complexity of OAuth2 handshakes and JWT validation. It also supports migrating tokens from older OAuth1.0 implementations. With five runtime dependencies and a permissive Apache 2.0 license, it's a straightforward drop-in for any Python application that needs to authenticate against Intuit APIs.

Use it for:

  • Authenticate a web application against QuickBooks Online to read or write accounting data.
  • Obtain and refresh OAuth2 bearer tokens for calling Intuit APIs without re-prompting the user.
  • Validate ID tokens returned by Intuit's OpenID Connect provider to confirm user identity.
  • Fetch user profile attributes (email, name, etc.) from the Intuit UserInfo endpoint.
  • Revoke expired or unused OAuth2 tokens to clean up access permissions.
  • Migrate an existing OAuth1.0 integration to OAuth2 using built-in token conversion utilities.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Provides OAuth2 and OpenID Connect authentication for Intuit APIs, handling token lifecycle and user profile retrieval.

Yes. The package is actively maintained, has low install friction, carries no known vulnerabilities, and is the official Intuit-provided client. Install it if you're building against any Intuit API (QuickBooks, Payments, UserInfo). The only caveat is that Python version support is unspecified—verify compatibility with your target Python version before committing.

Install

intuit-oauth on PyPI

pip

pip install intuit-oauth

uv

uv add intuit-oauth

poetry

poetry add intuit-oauth

Installing intuit-oauth

Before you install

Low friction installation with five runtime dependencies. Actively maintained—last commit 2026-07-22, released 23 days ago. Repository has 85 stars and is not archived.

License in practice

Licensed under Apache 2.0 (permissive), allowing commercial and private use with minimal restrictions.

Quickstart

pip install intuit-oauth

from intuit_oauth import AuthClient

client = AuthClient(
    client_id='your_client_id',
    client_secret='your_client_secret',
    redirect_uri='your_redirect_uri'
)

Requires valid Intuit API credentials (client_id, client_secret, redirect_uri) from Intuit Developer portal.

Verify before relying

  • Minimum Python version requirement (requires_python is unspecified in fact sheet)
  • Whether token refresh and revocation are automatic or require explicit calls
  • Support status for OAuth1.0 to OAuth2 migration beyond what the description states

Package facts

License Apache 2.0 (permissive)
Python support not specified
Install friction low — pure-Python wheel
Runtime dependencies 5 — pyjwt, requests, requests_oauthlib, six, enum-compat
Maintenance actively maintained — 23 days since the last release
Last repo commit
First released
Downloads 1,800,153/month — #3,544 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: intuit_oauth-1.2.7-py3-none-any.whl

Keywords: intuit, quickbooks, oauth, auth, openid, client

Tags

intuit oauth2 clientquickbooks authentication pythonoauth2 token managementintuit api authenticationopenid connect clientquickbooks payments api authintuit user profile api
oauth2quickbooksintuit-api

More WWW/HTTP packages