Hello,
I'm having troubles with https://graph.microsoft.com/v1.0/me/onlineMeetings.
I have configure an application in my entra with the scope:
OnlineMeetings.ReadWrite profile openid email
In my php application, I request access on behalf of a user.
I have received a valid token but when I try to reach the online Meetings endpoint with it, I have an error:
"error": {
"code": "BadRequest",
"message": "15000: An error has occurred.",
"innerError": {
"date": "2024-09-23T15:01:16",
"request-id": "d9eae052-d6fb-477a-8fe1-7ee657b86a62",
"client-request-id": "8de40ce1-f89d-7621-3903-6751792849f6"
}
}
And the request body is the same of the documentation :
{
"startDateTime": "2019-07-12T14:30:34.2444915-07:00",
"endDateTime": "2019-07-12T15:00:34.2464912-07:00",
"subject": "User Token Meeting"
}
Can someone help me, please ?
Marion