Philip Gichuhi

Results 216 comments of Philip Gichuhi

@denysobukh @SashaUsov to double-check, is the Graph client you're instantiating to call `client.sites().getAllSites().get().getValue();` using the `client_id` you've granted `Sites.Selected` permissions? I notice that the application that creates the permission needs...

@SashaUsov just noticed that [`getAllSites` ](https://learn.microsoft.com/en-us/graph/api/site-getallsites?view=graph-rest-1.0&tabs=http#permissions)does not work with signed in users (delegated scenarios), it only supports application permissions.

Thanks for clarifying. Using an empty search parameter works for me @SashaUsov ```java graphClient.sites().get( requestConfiguration -> { requestConfiguration.queryParameters.search = "" } ); ``` Does this help?

@SashaUsov Please try using `withUrl()` to override the request URL. Does this unblock you? ```java graphClient.sites().withUrl("https://graph.microsoft.com/v1.0/sites?select=id,name&search=").get() ``` Would you also mind upgrading to the latest SDK version & sharing the...

Thanks for reporting this @greg-anetac. I have surfaced this to an upstream team. As a workaround, you can read the property through `getAdditionalData()` on the model Internal: [IcM](https://portal.microsofticm.com/imp/v5/incidents/details/576816653/)

Hi @ihudedi To control the number of bytes returned you'd need to download the Drive Item first & pass a `Range` header to the download URL - [docs](https://learn.microsoft.com/en-us/graph/api/driveitem-get-content?view=graph-rest-1.0&tabs=http#partial-range-downloads). The `.../content`...

@ihudedi `/content` should return the entire item. Do you mean that the API is only returning 8Kb of a larger file? Are you able to validate this using Graph Explorer...

Great to hear @ihudedi Are you able to share what the root cause was for future reference by others?

Thanks for reporting this @pschichtel Following up internally with the service team Internal IcM ref - https://portal.microsofticm.com/imp/v5/incidents/details/576794610

Hi @Xavlight Apologies for the poor experience. I'm now looking into the authentication issues on this package. Thank you for the detailed issue. What error are you getting when using...