Alejandro Casanovas

Results 265 comments of Alejandro Casanovas

See the different available backends here https://github.com/O365/python-o365/blob/master/O365/utils/token.py

Try with `open_group` and `close_group`. Those effectively add parenthesis to the ODATA formula.

> Try with `open_group` and `close_group`. Does this worked for you?

Yes, when using the client credentials auth flow, you are authentication with the app identity. So you will have access to all the resources the app has access to. In...

Hi @mrtracz, when using credentials auth flow, you need are "connected" as the app. So you have the permissions the app has. It does not depend on your user but...

Read the instructions carefully. Client credentials auth flow don’t use delegated permissions.

```python user = account.get_current_user() print(user.mail) ```

I think you need to add the scope: 'User.ReadBasic.All' But I'm not sure