Getting Started
Introduction to Epilogue Auth
Epilogue Auth is an OAuth-based authentication service that allows you to add user authentication to your applications.
Overview
The authentication flow works as follows:
- User visits your login endpoint → redirected to Epilogue Auth
- User authenticates → redirected back to your callback URL with a
code - Your server exchanges the code for a token
- Fetch user info and create a session
Requirements
To integrate Epilogue Auth, you'll need:
- APP_ID - Your application ID from Epilogue Auth
- APP_SECRET - Your application secret (keep this secure!)
- AUTH_URL - The authorization URL for your app
API Endpoints
| Endpoint | Method | Description |
|---|---|---|
https://auth.epilogue.team/api/v1/authorize/{APP_ID} | POST | Exchange authorization code for token |
https://auth.epilogue.team/api/v1/app/me | GET | Get authenticated user info |
Next Steps
Choose your framework to get started: