This used to work fine but broke down during the past 3 months. The code didn't change, the user didn't change. Seemingly Graph did.
PHP SDK
$user = $graph->createRequest('GET', '/me/photos/48x48')->setReturnType(Model\User::class)->execute();
results in
Client error: GET https://graph.microsoft.com/v1.0/me/photos/48x48 resulted in a 404 Not Found response:
{"error":{"code":"UnknownError","message":"{\r\n \"errorCode\": \"ErrorProfileNotFound\",\r\n \"message\": \"Exception of type 'Microsoft.Fast.Profile.Core.Exception.ProfileNotFoundException' was thrown.\",\r\n \"target\": null,\r\n \"details\": null,\r\n \"innerError\": null,\r\n \"instanceAnnotations\": []\r\n}","innerError":{"date":"2022-04-12T18:13:30","request-id":"44c9baba-8213-4587-a7d0-4793432bca1b","client-request-id":"44c9baba-8213-4587-a7d0-4793432bca1b"}}}
What can it be?

