Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,14 @@ When your users authorize a tool, Arcade.dev will redirect the user's browser to

If you need help, join the [Implementing a custom user verifier](https://github.com/ArcadeAI/arcade-ai/discussions/486) GitHub discussion and we'll be happy to assist.

<Callout type="info">
For a complete working example, see the [custom user verifier demo
server](https://github.com/ArcadeAI/custom-user-verifier). It's a minimal
Python Flask app you can run locally to test the verification flow, use as a
reference when building your own, or to provide as a sample to your coding
agent (e.g. Claude Code, Cursor Agent, etc).
</Callout>

import { Steps, Tabs, Callout } from "nextra/components";

<Steps>
Expand Down
Loading