Philip Gichuhi

Results 216 comments of Philip Gichuhi

Thanks for reporting this @vheneraliuk. Just to be clear on your build attempts with Proguard disabled, do you disable your ProGuard files as well as set `minifyEnabled` and `shrinkResources` to...

(Triage notes) - We enable [zip64](https://github.com/microsoftgraph/msgraph-beta-sdk-java/blob/main/build.gradle#L65) when packaging the SDK.

Hi @Doc94 The API supports different operations to assign/remove sponsors from a user. Please see: https://learn.microsoft.com/en-us/graph/api/user-post-sponsors?view=graph-rest-1.0&tabs=http https://learn.microsoft.com/en-us/graph/api/user-delete-sponsors?view=graph-rest-1.0&tabs=http A work-around using the SDK: ```java User sponsor = new User(); sponsor.setId(""); graphClient.users().withUrl(...

Hi @NicoMunozZenity Thank you for reaching out. Unfortunately these docs should not point to the Graph SDK. The Copilot endpoints will be hosted in their own SDK. We will resolve...

@Moh-inc thank you for your feedback and proposed improvements. These are really helpful to the future of this SDK. The exception is thrown because the HTTP response returned after hitting...

I do however like the idea of adding a convenience method to reduce the boilerplate to instantiate a `PageIterator`. This is worth exploring further.

@baywet requesting your help on how to configure OpenTelemetry to work with the SDK. Will add to docs.

> Another path that went "poof" was: > > ```java > client.sites().byId(config.getSiteId()).drive().root().itemWithPath("folder/file"); > ``` > > I totally expect breaking changes going from 5.x.x to 6.x.x but the issue I'm...

Thanks for reaching out @DMarf. The snippet you have is the best we can support now since we're not currently generating query parameters for POST requests. From a high level...

Thank you for clarifying @DMarf. Yes, this points to an issue in the SDK. Glad you were able to find a workaround.