Martin Machacek

Results 159 comments of Martin Machacek

Trying the requests from Postman. API is running on ASPNET Core 8 1. ``` POST {app_url}/login Content-Type: multipart/form-data;boundary=605a817187c144bbae08f23dda69523a --605a817187c144bbae08f23dda69523a Content-Type: application/x-www-form-urlencoded //or text/plain or Content-Type is missing Content-Disposition: form-data; name="username"...

Seems like the server side issue. I've tried the same [endpoint](https://learn.microsoft.com/en-us/graph/api/listitem-list-permissions?view=graph-rest-beta) few weeks ago via Graph Explorer and got the same itemNotFound error. I haven't tried POST method, maybe the...

How do you authenticate when using the Graph SDK? I'm not sure whether the custom policies are applied to all applications in B2C tenant. When registered the user through the...

I've created similar issue in another repository, but there is no response from the maintainers for several months. https://github.com/microsoftgraph/msgraph-metadata/issues/650 I believe that SDK deserver a better changelog.

Hi @rkodev, just out of curiosity...who is the maintainer of this repo now? Lots of new questions without any response for over 2 months.

You can use Select and Expand which accept string ``` graphServiceClient .Me .Request() .Select("id,mail,department,displayName") .Expand("memberOf($select=id,displayName)") ```

Does the `v1.0/sites/delta` endpoint work for you? Even if I'm SharePoint Administrator and granted permissions like `Sites.Read.All`, `Sites.Manage.All` and `Sites.FullControl.All`, the response is still 403.

> Interesting. Through graph explorer, I am hitting 403 as you mentioned. I am pretty sure it was working last Friday. I'm also sure it worked recently 🙂

@kesane-msft As a workaround, you can use the `WithUrl` method var response = await client.Sites.Delta.WithUrl($"https://graph.microsoft.com/v1.0/sites/delta?token={token}").GetAsDeltaGetResponseAsync();