Use of the Graph PHP API (authentication and valid token recovery problems)

Xavier ABADIE 0 Points de réputation
2024-10-24T12:44:12.5233333+00:00

Hi,

I've been going round in circles for several days and I can't find a way out. I'm not sure I've got the right direction yet.

I've come to ask you for advice and to help me with my code if that's what I'm looking for.

I develop in PHP using the msgraph-sdk-php SDK.

I'm developing a web application and I'd like to send tasks to To Do.

I'm working on the principle that the user will have to validate their consent the 1st time, and then the aim would be to stop asking them.

I would have recovered information such as token and token_refresh to redo actions the next time (stored in the database), at least that's what I think.

To create a task in To Do, I need to perform 2 actions for the user who has validated their consent:

  • Read the task lists, and retrieve the task Id[0].
  • Send the task and the information to this task[0]->id

I therefore turned to the ‘OnBehalfOfContext’ method with the idea of making several requests with tokens in the database for the user.

Test code extract (all in one)

test-event.php

	use League\OAuth2\Client\Provider\GenericProvider;
	use Microsoft\Kiota\Authentication\Oauth\OnBehalfOfContext;
	use Microsoft\Kiota\Abstractions\ApiException;
	use Microsoft\Graph\GraphServiceClient;
	use Microsoft\Graph\Generated\Models\TodoTask;
	use Microsoft\Graph\Generated\Models\DateTimeTimeZone;
	use Microsoft\Graph\Generated\Models\Importance;
	use Microsoft\Graph\Generated\Models\ItemBody;
	use Microsoft\Graph\Generated\Models\BodyType;

	session_start();
	session_regenerate_id();

	$tenantId = 'common';
	$clientId = '{clientId}';
	$clientSecret = '{clientSecretId}';
	$redirectUri = 'http://localhost/MS-Graph/test-event.php';
	$scopes = ['Tasks.ReadWrite', 'User.Read', 'offline_access'];
	$oauthClient = new GenericProvider([
		'clientId'                => $clientId,
		'clientSecret'            => $clientSecret,
		'redirectUri'             => $redirectUri,
		'urlAuthorize'            => "https://login.microsoftonline.com/$tenantId/oauth2/v2.0/authorize",
		'urlAccessToken'          => "https://login.microsoftonline.com/$tenantId/oauth2/v2.0/token",
		'urlResourceOwnerDetails' => '',
		'scopes'                  => $scopes,
	]);
	if (!isset($_GET['code'])) {
		$authorizationUrl = $oauthClient->getAuthorizationUrl();
		header('Location: ' . $authorizationUrl);
		exit;
	}
	echo "<pre>";
	$authCode = $_GET['code'];
	$accessToken = $oauthClient->getAccessToken('authorization_code', [
		'code' => $authCode
	]);
	$tokenAccess = $accessToken->getToken();
	echo 'Access Token : ' . $tokenAccess . "<br>";
	echo 'Refresh Token : ' . $accessToken->getRefreshToken() . "<br>";
	echo 'Date d\'expiration : ' . date('d/m/Y H:i:s', $accessToken->getExpires()) . "<br>";
	echo 'Déjà expiré ? ' . ($accessToken->hasExpired() ? 'Oui' : 'Non') . "<br>";
	$oboContext = new OnBehalfOfContext(
		$tenantId,
		$clientId,
		$clientSecret,
		$tokenAccess,
	);
	$graphClient = new GraphServiceClient($oboContext, $scopes);
	try {
		$taskLists = $graphClient->me()->todo()->lists()->get()->wait()->getValue();
		foreach ($taskLists as $taskList) {
			echo 'Task List ID: ' . $taskList->getId() . ' - Title: ' . $taskList->getDisplayName() . PHP_EOL;
		}
		$task = new TodoTask();
		$task->setTitle("Nouvelle tâche OnBehalfOf");
        $dueDateTime = new DateTimeTimeZone();
        $dueDateTime->setDateTime('2024-10-25Z');
        $dueDateTime->setTimeZone('Europe/Paris');
        $task->setDueDateTime($dueDateTime);
        $task->setImportance(new Importance('normal'));
        $task->setIsReminderOn(true);
        $reminderDateTime = new DateTimeTimeZone();
        $reminderDateTime->setDateTime('2024-10-25T13:00:00Z');
        $reminderDateTime->setTimeZone('Europe/Paris');
        $task->setReminderDateTime($reminderDateTime);
		$body = new ItemBody();
        $body->setContent('Ceci est une tâche créée avec le flux OnBehalfOf');
        $body->setContentType(new BodyType('text'));
		$task->setBody($body);
		$graphClient->me()->todo()->lists()->byTodoTaskListId($taskLists[0]->getId())->tasks()->post($task)->wait();
		echo "Tâche créée avec succès.";
	} catch (ApiException $e) {
		echo "Echec de la création de la tâche : ".$ex->getError()->getMessage();
	}

I get the error :

( ! ) Fatal error: Uncaught League\OAuth2\Client\Provider\Exception\IdentityProviderException: invalid_request in D:\xampp\htdocs\MS-Graph\vendor\league\oauth2-client\src\Provider\GenericProvider.php on line 236> ( ! ) League\OAuth2\Client\Provider\Exception\IdentityProviderException: invalid_request in D:\xampp\htdocs\vs-lead\covve\MS-Graph\vendor\league\oauth2-client\src\Provider\GenericProvider.php on line 236

I read that my token should be in JWT format, and it isn't, following the command: ‘$oauthClient->getAccessToken....’. Is this normal? It seems to be valid for 1 hour.

Calling the new GraphServiceClient($oboContext, $scopes) class returns an ‘invalid_request’ error.

Sorry for my bad English. If you can help me, I'm really stuck at the moment.

Thanks

Xav

Azure
Azure
Plateforme et infrastructure de cloud computing pour la génération, le déploiement et la gestion d’applications et de services à travers un réseau mondial de centres de données gérés par Microsoft.
329 questions
Microsoft Q&A
Microsoft Q&A
Utilisez cette étiquette pour partager des suggestions, des demandes de fonctionnalités et des bogues avec l'équipe Microsoft Q&A. L'équipe Microsoft Q&A évaluera régulièrement vos commentaires et fournira des mises à jour en cours de route.
186 questions
Développement
Développement
Processus de recherche, de productisation et d’affinement de technologies nouvelles ou existantes.
12 questions
{count} votes

2 réponses

Trier par : Le plus utile
  1. Nina Kalenderska (Concentrix International) 540 Points de réputation Fournisseur Microsoft
    2024-11-01T14:59:21.0266667+00:00

    Bonjour,

    Merci d'avoir sollicité la communauté Q&A France.

    Après quelques recherches, j'ai trouvé ces deux sujets qui, je l'espère, vous aideront à résoudre votre problème :

    How to generate an on-behalf-of token for a middle-tier API

    Fatal error: Uncaught League\OAuth2\Client\Provider\Exception\IdentityProviderException: invalid_request

    Cordialement,

    Nina

    0 commentaires Aucun commentaire

  2. Xavier ABADIE 0 Points de réputation
    2024-11-08T08:25:35.18+00:00

    Bonjour,

    Merci pour les liens, mais pas forcément trouvé la réponse dedans.

    Par contre, j'ai continué mes investigations, et je viens de comprendre quelque chose.

    Quand je choisis un compte utilisateur pour le consentement qui fait parti de mon domaine, cela fonctionne, j'ai bien un token valide (JWT).

    Quand je choisis un compte MS personnel, j'ai un token invalide.

    J'ai aperçu sur la configuration dans l'admin Entra de mon application sur les propriétés ce message.

    Image de l’utilisateur

    Je suis actuellement sur un développement test en local PHP, pour avoir accès à des comptes externes ou personnels, est-ce que je dois faire valider mon application MS Entra ?

    Est-ce que cela peut être le problème ?

    Comment je peux faire, ce ne sont que des tests ?

    Est-ce que je ne peux pas autoriser des mails spécifiques qui seraient ajouter justement pour des tests avant de devoir valider l'application. Cela se fait côté Google API.

    J'attend vos retours d'informations.

    Cordialement

    Xav

    0 commentaires Aucun commentaire

Votre réponse

Les réponses peuvent être marquées comme Réponses acceptées par l’auteur de la question, ce qui permet aux utilisateurs de connaître la réponse qui a résolu le problème de l’auteur.