auth option:
This page is under construction. The outline below sketches what it will cover.
BearerAuth— injects a staticAuthorization: Bearer <token>header into every request.OAuth— wraps the transport’s fetch to attach the current token, refreshing automatically when near expiry; concurrent refreshes are coalesced into a single request.ClientCredentials— machine-to-machine token acquisition via the client credentials grant.- Token storage —
InMemoryStoreandFileTokenStoragefor persisting tokens across runs; per-server auth in multi-server configs.