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

Microsoft Graph client library for Python

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

**Describe the bug** We have to use msgraph api because azure.graphrbac is deprecated and we only have the msgraph.core module which is not ready for production. Why was not development...

bug

**Describe the bug** trying to construct a very basic GraphAPI client by following and slightly modify the code in this tuorial: https://docs.microsoft.com/en-us/graph/tutorials/python?tabs=aad&tutorial-step=2, to send messages to Teams chat and return...

bug

Hello, Just want to confirm the reason why apparently the kwarg called `retry_on_status_codes` works in `client.get()`, as in the following example, but not with `client.put()`: https://github.com/microsoftgraph/msgraph-sdk-python-core/blob/0c1fc5eb12e372d1d607a0961b2e1f7b6dba9a2d/samples/retry_handler_samples.py#L49 When I try to...

**Is your feature request related to a problem? Please describe.** Consider following function: ```py def get_user_by_email(email): return client.get( '/users', params={ '$select': 'displayName', '$filter': f"mail eq '{email}'", '$top': '10' }, )...

enhancement

**Is your feature request related to a problem? Please describe.** I want to authenticate via CLI credentials but the library does not allow this at the moment. So far I...

enhancement

Bumps [pyjwt](https://github.com/jpadilla/pyjwt) from 2.1.0 to 2.4.0. Release notes Sourced from pyjwt's releases. 2.4.0 Security [CVE-2022-29217] Prevent key confusion through non-blocklisted public key formats. https://github.com/jpadilla/pyjwt/security/advisories/GHSA-ffqj-6fqr-9h24 What's Changed Add support for Python...

dependencies