Michael Mainer
Michael Mainer
@Koenvh1 I think what may be the issue is that 1) the [default timeout is set to 0](https://github.com/microsoftgraph/msgraph-sdk-php/blob/dev/src/Http/GraphRequest.php#L132) which will wait indefinitely, 2) I've witnessed dropped connections with Graph. Between...
Note to self: the short-term action is to expose nextlink. Long-term is to provide a PageIterator.
After looking at this again, I disagree with my earlier self. I think I've witnessed this in other SDKs where many requests are made and at some point, without consistent...
Proposal for us: `IdentitySet i = AdditionalData.Get("propertykey") // returns deserialized object if it exists, otherwise returns null.` or `AdditionalData.TryGet("propertykey", out propertyValue T) // Added as an extension method.` Currently, they...
We discussed this before. The conclusion is that we want people to either use the generated client when possible, and if not, you use the httpClient to submit requests via...
Can you share with us the form of the request you make on Graph Explorer versus the form you used with this library? Also, in the 503 response, there should...
This is a new scenario for batch support where we need to support the creation of a *CollectionPage with NextPageRequest populated with the request to get the next page.
This is strange scenario. Typically, references are added with a POST to the collection per OData, not using a Action. Same with using a DELETE on the collection/id/$ref. We should...
I need to check whether the Graph returns the location header so that a subsequent request can be made to monitor the copy status. Still, if it is returned, we'll...
Related microsoftgraph/microsoft-graph-docs#673