68Thorby68
68Thorby68
> @thorby68 just for clarification, does your application require a signed-in user who's log-in session you are trying to persist? Or are you using [application permissions?](https://learn.microsoft.com/en-us/graph/auth-v2-service?tabs=http) No! no users required,...
> Thanks for raising this @thorby68 > > To help understand this better, any chance you've been able to come across the docs at this link? https://github.com/microsoftgraph/msgraph-sdk-php/blob/main/docs/Examples.md#access-token-management > > I...
> In that case you don't need to manage access tokens yourself. you can initialize a `GraphServiceClient` as shown [here](https://learn.microsoft.com/en-us/graph/sdks/choose-authentication-providers?tabs=PHP#using-a-client-secret-3) and make calls to the Graph. > > The SDK...
Hi Gents, thank you for your support. I'm not sure what is happenning here because when i try to confirm the token is stored (a one time thing to prove...
******UPDATE****** Using Graph Explorer (with my credentails) I can execute ` https://graph.microsoft.com/v1.0/me/drive" ` and get a valid response ``` { "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#drives/$entity", "@microsoft.graph.tips": "Use $select to choose only the properties...
> @thorby68 to use the `/me` endpoints, you need a signed-in user. Since your application doesn't need a signed in user, you can replace `/me` with `/user/{user-id}` where userId can...