Philip Gichuhi

Results 216 comments of Philip Gichuhi

Hi @talalong, please confirm that you've included a dependency on [azure-identity](https://central.sonatype.com/artifact/com.azure/azure-identity) alongside this library as shown in the [README](https://github.com/microsoftgraph/msgraph-sdk-java?tab=readme-ov-file#11-install-via-gradle)

@talalong Interesting. I'm unable to reproduce this behavior. Please share your project's dependency tree: `./gradlew dependencies` or `mvn dependency:tree`

Thanks for reporting this @m-moris. In the interim, for your scenario you can initialise your Graph client using: ```java GraphServiceClient client = new GraphServiceClient(credential, "https://graph.microsoft.com/.default"); ```

Hi @poschi3. Sorry for the poor experience here. Please try the `withUrl` method as a workaround as I investigate this further: ```java client.sites().bySiteId("").lists().byListId("").items().byListItemId("").fields().withUrl( "https://graph.microsoft.com/v1.0/sites//lists//drive/root:/:/listItem/fields" ).get(); ``` `withUrl` overrides all the...

superseded by https://github.com/microsoftgraph/msgraph-sdk-java/pull/2211

For context, our telemetry handler currently adds 2 headers to requests: `SdkVersion` and `client-request-id`. Client Request ID can be manually set or defaults to a random UUID. The current dev...

@isvargasmsft the 2nd requirement isn't clear to me. Kindly clarify.

Ah, didn't know we're referring to that. Not yet.

Hi @dejan-kosak Thanks for reaching out. Would you mind sharing a code sample of how you're mocking the batch response. I'm thinking it should be possible to build a `Response`...