msgraph-sdk-php
msgraph-sdk-php copied to clipboard
Microsoft Graph Library for PHP.
- [x] Update repo code samples & READMEs for Kiota Auth repo, Graph v1 & Graph Beta repos - [ ] Update Graph [docs](https://learn.microsoft.com/en-us/graph/sdks/choose-authentication-providers?view=graph-rest-1.0&tabs=PHP) sub-task of https://github.com/microsoftgraph/msgraph-sdk-php/issues/1407
So when installing this library it installs a huge amount of files (approx 30k). This is causing thinks like psalms memory usage to jump from sub 1G to almost 10G....
When the `filter` and `top` query parameters are both set, the `top` parameter appears to be ignored. The following script echoes `1000` . This appears to be the maximum allowed...
With reference to the version description https://github.com/microsoftgraph/msgraph-sdk-php/blob/dev/UPGRADING.md and request for comments regarding the new syntax. I don't know what the consensus was but my 2 cents would be to support...
For unit testing a class in out application that uses the sdk there isn't an easy way to mock the sdk parts see code block below. I had a dig...
Hello team I am querying the endpoint to get the list of items inside a directory in OneDrive but I am struggling to retrieve the contents of the response received....
Hello, I only have the option of enabling Internet access via HTTP proxy on my environment. I always get the message `Fatal error: Uncaught GuzzleHttp\Exception\ConnectException: cURL error 6: Could not...
Added getDeviceLocalCredentialsId method. Useful when looking up Azure Laps passwords like $graphServiceClient->directory()->DeviceLocalCredentials()->byDeviceLocalCredentialInfoId($id)->get($requestConfinfigurationSelectCredentials)->wait() ###### Microsoft Reviewers: [Open in CodeFlow](https://microsoft.github.io/open-pr/?codeflow=https://github.com/microsoftgraph/msgraph-sdk-php/pull/1482)
Hi, Is it possible to download an entire folder at once with the graph API? The folder contains quite a lot of files, and downloading the content of each file...
Hi again, Sorry for two issues in a row... I had a method to rename a drive item. I used to call `$graph->createRequest('PATCH', 'drives/{drive-id}/items/{drive-item-id}')->attachBody(json_encode(['name' => 'new name']))->execute();` to rename a...