Philip Gichuhi

Results 216 comments of Philip Gichuhi

Hi @dejan-kosak Sorry for the delayed repsonse. This should be possible using `addBatchRequestStep` with a `BatchRequestStep` object ```java requestContent.addBatchRequestStep(new BatchRequestStep("id", BaseGraphRequestAdapter.convertToNativeRequest(requestInformation))); ``` We need to add a constructor overload to...

Worked on the changes here - https://github.com/microsoftgraph/msgraph-sdk-java-core/pull/1795

Thanks for reporting this @k0urge. Following up with an upstream team that owns the metadata we generate the SDK from. OpenAPI spec defines a list of comments.

We also need to bump `System.Text.Json` that has a [CVE](https://microsoftgraph.visualstudio.com/Graph%20Developer%20Experiences/_componentGovernance/158192?_a=alerts&typeId=29081946&alerts-view-option=active) & is causing conflicts with ExchangeOnlineManagement

Hi @ptrussart. My sincere apologies for the delayed response. v6.x of this SDK tries to align better with expected API response payload. Creating a team is expected to return a...

Hi @boeapen We still have documentation gaps to address around logging. We use OpenTelemetry by default to log. Please see this [sample](https://github.com/MicrosoftDocs/openapi-docs/issues/12#issuecomment-2082607536) for how to set this up.

@0B7002 I'll try to reproduce this and get back to you later today. Apologies for the delay

Sorry for the delay @0B7002. From my understanding of certificate-based authentication & these [docs](https://learn.microsoft.com/en-us/entra/identity-platform/howto-create-self-signed-certificate) what you should be uploading to your app registration is the X509 certificate generated. From Azure...

Hi @Exrsapaa, thank you for reaching out. Some suggestions from quick glance at your code sample. A batch request can contain up-to 20 requests, perhaps adding 20 requests per batch...

@raghucha thank you for creating this issue. This is an issue with the code snippet. Passing a new "empty" body object should work: ```java var result = graphClient.me().messages().byMessageId("{message-id}").createForward().post(new CreateForwardPostRequestBody()); ```...