mirror of
https://github.com/ComposioHQ/composio.git
synced 2026-09-22 11:46:35 +08:00
8086ef02cb
## Summary - Repairs runnable TypeScript and Python examples for current backend requirements, including authenticated MCP endpoints, current transports, valid tool identifiers, provider limits, and resource uniqueness. - Replaces placeholder resource IDs with explicit `COMPOSIO_EXAMPLES_*` configuration and makes failed examples exit loudly. - Adds `scripts/examples-provision.mjs` as an idempotent provisioning check for a disposable examples project. ## Scope - This PR no longer changes the Python SDK runtime or generated-client dependency. - Python remains pinned to the published `composio-client==1.43.0` in `pyproject.toml`, `setup.py`, and `uv.lock`. - The owned 2.x client integration is deferred until that client completes its release guarantees and is explicitly published. - The scheduled live workflow and manifest remain deferred until their runner is tracked. ## Verification - `make chk` - `make tst` (`927 passed, 33 skipped`) - Hosted checks rerun against commit `12691aca7`.
67 lines
2.3 KiB
Python
67 lines
2.3 KiB
Python
import os
|
|
|
|
from composio import Composio
|
|
from composio.types import auth_scheme
|
|
|
|
composio = Composio()
|
|
|
|
# Auth config to connect against and the connecting user (raise KeyError when unset)
|
|
gmail_auth_config_id = os.environ["COMPOSIO_EXAMPLES_GMAIL_AUTH_CONFIG_ID"]
|
|
user_id = os.environ["COMPOSIO_EXAMPLES_USER_ID"]
|
|
|
|
# List all connected accounts
|
|
connected_accounts = composio.connected_accounts.list()
|
|
print(connected_accounts)
|
|
|
|
# Create a new connected account (OAuth). The user may already have a
|
|
# connected account for this auth config, so allow another one.
|
|
connection_request = composio.connected_accounts.initiate(
|
|
user_id=user_id,
|
|
auth_config_id=gmail_auth_config_id,
|
|
allow_multiple=True,
|
|
)
|
|
|
|
# Send the user to this URL to authorize the connection
|
|
print(f"Visit this URL to authorize: {connection_request.redirect_url}")
|
|
|
|
# Wait for the connection to be established (OAuth)
|
|
connected_account = connection_request.wait_for_connection()
|
|
# Print identifying fields only: the full object carries live OAuth credentials.
|
|
print(f"Connected account {connected_account.id} is {connected_account.status}")
|
|
|
|
# Create a new connected account (API Key)
|
|
connection_request = composio.connected_accounts.initiate(
|
|
user_id=user_id,
|
|
auth_config_id=os.environ["COMPOSIO_EXAMPLES_APIKEY_AUTH_CONFIG_ID"],
|
|
allow_multiple=True,
|
|
config=auth_scheme.api_key(
|
|
options={ # type: ignore[arg-type] # api_key() injects "status"; the field is Required on the generated TypedDict but not needed here
|
|
"generic_api_key": os.environ["COMPOSIO_EXAMPLES_APIKEY_PLACEHOLDER"],
|
|
},
|
|
),
|
|
)
|
|
print(connection_request)
|
|
|
|
# When creating a connected account, you can check for required fields
|
|
required_fields = composio.toolkits.get_connected_account_initiation_fields(
|
|
toolkit="NOTION",
|
|
auth_scheme="API_KEY",
|
|
)
|
|
print(required_fields)
|
|
|
|
# Retrieve a specific connected account
|
|
connected_account_retrieved = composio.connected_accounts.get(connected_account.id)
|
|
print(connected_account_retrieved)
|
|
|
|
# Disable a connected account
|
|
composio.connected_accounts.disable(connected_account.id)
|
|
print("Connected account disabled")
|
|
|
|
# Enable a connected account
|
|
composio.connected_accounts.enable(connected_account.id)
|
|
print("Connected account enabled")
|
|
|
|
# Delete a connected account
|
|
composio.connected_accounts.delete(connected_account.id)
|
|
print("Connected account deleted")
|