Andrew Omondi
Andrew Omondi
@Kanac > And is it fine to hard code the feature flag like this in my sample code if we're creating our own HTTP Client? Something like this should work...
Yes, you have it right. I agree that is it worth adding some documentation about this. Once we add this to the docs, we will then close this issue.
This is a documentation issue for the service bug report template. We will need to update this template to give some instructions in scenarios where it's not possible to submit...
The following call results to the equivalent of the documented api call [here](https://docs.microsoft.com/en-us/graph/api/team-post?ranMID=46131&ranEAID=a1LgFw09t88&ranSiteID=a1LgFw09t88-a835KurWFpgZGWsWJj3AkQ&epi=a1LgFw09t88-a835KurWFpgZGWsWJj3AkQ&irgwc=1&OCID=AID2200057_aff_7806_1243925&tduid=(ir__kei6bxg00okf6k1d6lqdys90ln2xv9q23erd6p2h00)(7806)(1243925)(a1LgFw09t88-a835KurWFpgZGWsWJj3AkQ)()&irclickid=_kei6bxg00okf6k1d6lqdys90ln2xv9q23erd6p2h00&view=graph-rest-1.0&tabs=http#response-1). As the API returns no response body the returned value is null. ```cs var newteam = await...
Hey @LoungeFlyZ, Thanks for raising this. As covered in the upgrade guide [here](https://github.com/microsoftgraph/msgraph-sdk-dotnet/blob/dev/docs/upgrade-to-v4.md#breaking-changes), v4 of the SDK drops NewtonSoft support for System.Text.Json. You can always use the inbuilt configured serializer...
Hey @NicolasDemarbaix, Thanks for raising this issue. I notice for the .Net app, the scopes are specified as ```cs var scopes = new string[] { "https://graph.microsoft.com/.default" }; ``` However, [the...
Hey @NicolasDemarbaix, Are you able to confirm that your hybrid setup meets the requirements below? https://docs.microsoft.com/en-us/graph/hybrid-rest-support Also, if you are still able to replicate this, are you able to obtain...
Thanks @NicolasDemarbaix, Are you able to provide the approximate timestamps of the requests as well? This will help in finding the logs to associate with the request ids to forward...
Thanks @NicolasDemarbaix, I just took at the logs from the request ids and I was able to find some error information. Are you able to reproduce the issue if you...
We generate the classes from the metadata defined at https://graph.microsoft.com/v1.0/$metadata. Which looks to be inconsistent with the documentation. If the properties are being returned from the API, you should be...