msgraph-sdk-python icon indicating copy to clipboard operation
msgraph-sdk-python copied to clipboard

Results 120 msgraph-sdk-python issues
Sort by recently updated
recently updated
newest added

I am looking to use the msgraph sdk for python. I want to get a list of devices in our tenant. We have thousands of devices. When using the `msgraph.devices.get()`,...

**Describe the bug** When I query the SharePoint API using 'expand' and 'select' query options, the API expects 'select' and not '$select'. This is not a huge problem as I...

bug
dependency:metadata

I have this piece of code: ```py await client.drives \ .by_drive_id(drive_id) \ .items \ .by_drive_item_id(f'root:/foo/baz/bar.txt:') \ .content \ .put(body) ``` I want it to fail if the file already exists....

**Is your feature request related to a problem? Please describe.** When I first used this SDK, I modified objects that were returned but just for the needs of my script,...

enhancement

dumb question - but I do the authorization flow, get a user's "oauth access token" and store it. how do i authenticate the msgraphclient using that? doesnt' seem like theres...

documentation

Ahoi, first, thanks for the SDK. It makes life easier and helps me to stay in the python eco-system for such tasks. Now, I'm not really understanding Graph or the...

documentation

Hi, thanks for the wonderful lib! Is it possible to authenticate using FedAuth or rtFA cookies exported from a browser for development/prototyping use cases?

enhancement

Serialization appears to be pretty broken... One of the biggest overarching issues, from my perspective, with the entire project, is support for easy serialization and thus integration with the rest...

enhancement

I'm currently trying to get a room schedule through this code: ```python credential = ClientSecretCredential( config['tenantID'], config['clientID'], config['clientSecret'] ) scopes = ['https://graph.microsoft.com/.default'] client = GraphServiceClient(credentials=credential, scopes=scopes) # GET /users/{id |...

bug

2 things to address: - [ ] The telemetry handler would only set the client request Id if not already present, allowing people to set it manually if they need...

enhancement