Edit

Share via


Build PHP apps with Microsoft Graph and app-only authentication

This tutorial teaches you how to build a PHP console app that uses the Microsoft Graph API to access data using app-only authentication. App-only authentication is a good choice for background services or applications that need to access data for all users in an organization.

Note

To learn how to use Microsoft Graph to access data on behalf of a user, see this user (delegated) authentication tutorial.

In this tutorial, you will:

Tip

As an alternative to following this tutorial, you can download or clone the GitHub repository and follow the instructions in the README to register an application and configure the project.

Prerequisites

Before you start this tutorial, you should have PHP and Composer installed on your development machine.

You should also have a Microsoft work or school account with the Global administrator role. If you don't have a Microsoft 365 tenant, you might qualify for one through the Microsoft 365 Developer Program; for details, see the FAQ. Alternatively, you can sign up for a one-month free trial or purchase a Microsoft 365 plan.

Note

This tutorial was written with PHP version 8.1.5 and Composer version 2.3.5. The steps in this guide might work with other versions, but that hasn't been tested.

Register application for app-only authentication

Register an application that supports app-only authentication using client credentials flow.

  1. Open a browser and navigate to the Microsoft Entra admin center and sign in using a Global administrator account.

  2. Select Microsoft Entra ID in the left-hand navigation, expand Identity, expand Applications, then select App registrations.

    A screenshot of the App registrations

  3. Select New registration. Enter a name for your application, for example, Graph App-Only Auth Tutorial.

  4. Set Supported account types to Accounts in this organizational directory only.

  5. Leave Redirect URI empty.

  6. Select Register. On the application's Overview page, copy the value of the Application (client) ID and Directory (tenant) ID and save them. You'll need these values in the next step.

    A screenshot of the application ID of the new app registration

  7. Select API permissions under Manage.

  8. Remove the default User.Read permission under Configured permissions by selecting the ellipses (...) in its row and selecting Remove permission.

  9. Select Add a permission, then Microsoft Graph.

  10. Select Application permissions.

  11. Select User.Read.All, then select Add permissions.

  12. Select Grant admin consent for..., then select Yes to provide admin consent for the selected permission.

    A screenshot of the Configured permissions table after granting admin consent

  13. Select Certificates and secrets under Manage, then select New client secret.

  14. Enter a description, choose a duration, and select Add.

  15. Copy the secret from the Value column, you'll need it in the next steps.

    Important

    This client secret is never shown again, so make sure you copy it now.

Note

Notice that, unlike the steps when registering for user authentication, in this section you did configure Microsoft Graph permissions on the app registration. App-only auth uses the client credentials flow, which requires that permissions be configured on the app registration. See The .default scope for details.

Create a PHP console app

Begin by initializing a new Composer project. Open your command-line interface (CLI) in a directory where you want to create the project. Run the following command.

composer init

Answer the prompts. You can accept the defaults for most questions, but respond n to the following questions:

Would you like to define your dependencies (require) interactively [yes]? n
Would you like to define your dev dependencies (require-dev) interactively [yes]? n
Add PSR-4 autoload mapping? Maps namespace "Microsoft\Graphapponlytutorial" to the entered relative path. [src/, n to skip]: n

Install dependencies

Before moving on, add dependencies that you use later.

To install the dependencies, run the following command in your CLI.

composer require microsoft/microsoft-graph vlucas/phpdotenv

Load application settings

Add the details of your app registration to the project.

  1. Create a file in the root directory of your project named .env and add the following code.

    CLIENT_ID=YOUR_CLIENT_ID_HERE
    CLIENT_SECRET=YOUR_CLIENT_SECRET_HERE_IF_USING_APP_ONLY
    TENANT_ID=YOUR_TENANT_ID_HERE_IF_USING_APP_ONLY
    
  2. Update the values according to the following table.

    Setting Value
    CLIENT_ID The client ID of your app registration
    CLIENT_SECRET The client secret of your app registration
    TENANT_ID The tenant ID of your organization

    Important

    If you're using source control such as git, now would be a good time to exclude the .env file from source control to avoid inadvertently leaking your app ID.

Design the app

Create a console-based menu.

  1. Create a file in the root directory of your project named main.php. Add the opening and closing PHP tags.

    <?php
    ?>
    
  2. Add the following code between the PHP tags.

    // Enable loading of Composer dependencies
    require_once realpath(__DIR__ . '/vendor/autoload.php');
    require_once 'GraphHelper.php';
    
    print('PHP Graph Tutorial'.PHP_EOL.PHP_EOL);
    
    // Load .env file
    $dotenv = Dotenv\Dotenv::createImmutable(__DIR__);
    $dotenv->load();
    $dotenv->required(['CLIENT_ID', 'CLIENT_SECRET', 'TENANT_ID']);
    
    initializeGraph();
    
    $choice = -1;
    
    while ($choice != 0) {
        echo('Please choose one of the following options:'.PHP_EOL);
        echo('0. Exit'.PHP_EOL);
        echo('1. Display access token'.PHP_EOL);
        echo('2. List users'.PHP_EOL);
        echo('3. Make a Graph call'.PHP_EOL);
    
        $choice = (int)readline('');
    
        switch ($choice) {
            case 1:
                displayAccessToken();
                break;
            case 2:
                listUsers();
                break;
            case 3:
                makeGraphCall();
                break;
            case 0:
            default:
                print('Goodbye...'.PHP_EOL);
        }
    }
    
  3. Add the following placeholder methods at the end of the file before the closing PHP tag. You implement them in later steps.

    function initializeGraph(): void {
        // TODO
    }
    
    function displayAccessToken(): void {
        // TODO
    }
    
    function listUsers(): void {
        // TODO
    }
    
    function makeGraphCall(): void {
        // TODO
    }
    

This implements a basic menu and reads the user's choice from the command line.

Next step