Microsoft Application Setup
Steps for setting up Microsoft Graph API for every Microsoft component.
Connection Setup
Connect Microsoft Graph to ByteChef using OAuth 2.0 Authorization Code.
- Open the Azure Portal: https://portal.azure.com/
- Click on Microsoft Entra ID.
- Click on Add.
- Click on App registrations.
- Fill the form:
- Name: e.g., "ByteChef Integration"
- Supported account types: pick one based on who will log in
- Redirect URI (optional for now): Platform = Web, URI = your ByteChef callback, e.g.:
https://app.bytechef.io/callback(Cloud)http://localhost:5173/callback(Local dev)
- Click "Register".
- After registration, copy:
- Application (client) ID - used as Client ID in ByteChef
- Directory (tenant) ID - used as Tenant ID in ByteChef
- In your app, open Certificates & secrets
- Click on +New client secret.
- Add a description and choose an expiry.
- Create and copy the generated secret value → used as Client Secret in ByteChef. Store it securely.
For Microsoft Graph, the base URL is: https://graph.microsoft.com/v1.0
How is this guide?
Last updated on