Access Denied

This application requires JavaScript to function. Please enable it to continue.

Back to Generator

Azure Configuration Guide

Follow these steps to obtain your API credentials from the Microsoft Entra admin center.

1

Register the Application

Sign in to the Azure Portal and search for "App Registrations". Click on + New Registration.
Name it "Link Generator", set the account type to "Single Tenant", and click Register.

Result: You will now see your Application (client) ID and Directory (tenant) ID.
2

Create a Client Secret

On the left sidebar, go to Certificates & secrets. Click + New client secret.
Give it a description (e.g., "Web Key") and set an expiration.

Important: Copy the Value immediately. You will not be able to see it again after you leave the page.
3

Configure API Permissions

Go to API permissions > + Add a permission > Microsoft Graph.
Choose Application permissions (not Delegated).

  • Search and check: Files.Read.All
  • Search and check: Sites.Read.All

Finally, click the "Grant admin consent for [Your Org]" button.
This is required for the application to access files without a user login.

4

Get your Drive ID (Optional)

If you need a specific Drive ID, you can use the Graph Explorer.
Run the query: GET https://graph.microsoft.com/v1.0/me/drive to see your personal drive details.

Need more help? Check the Official Graph API Docs.

Go to App