Vadim Gremyachev

Results 81 comments of Vadim Gremyachev

Greetings, regarding > how to do if I want to read all of the list items ? there are over 10000+ items in the list in [`2.3.14` version](https://github.com/vgrem/Office365-REST-Python-Client/releases/tag/2.3.14) has been...

Greetings, `url` parameter in `AuthenticationContext` should refer to site url instead of page url: `url = "https://{netorg_number}.sharepoint.com/sites/{company_name}"`

Greetings, thank you for catching this issue 👍 Will look into and get back in the beginning of January

Greetings, when working with SharePoint API both SharePoint and SharePoint with Microsoft Graph APIs are supported, namely: - [SharePoint API](https://msdn.microsoft.com/en-us/library/office/jj860569.aspx) which covers SharePoint 2013 or above and OneDrive for Business...

@nmduarte, regarding: > can we use graph for SharePoint definitely, please refer [examples section](https://github.com/vgrem/Office365-REST-Python-Client/tree/master/examples/onedrive) which demonstrates how to use SharePoint API with Microsoft Graph. In terms of `403 Client Error:...

The documentation is hosted in a [wiki](https://github.com/vgrem/Office365-REST-Python-Client/wiki) _Closing due to inactivity_

Greetings, this is expected behavior, per [official documentation](https://learn.microsoft.com/en-us/sharepoint/dev/general-development/sharepoint-search-rest-api-overview): > When you query in the context of a SharePoint Online user, you get results from: > > - Content in SharePoint...

This issue appears to be similar to [this one](https://github.com/vgrem/Office365-REST-Python-Client/issues/541). It has been addressed and the error should not longer occur in [`2.3.14` version](https://github.com/vgrem/Office365-REST-Python-Client/issues/541) or above.

Nowadays it is supported to specify a custom file name via `FilesCollection.create_upload_session` method, for example: ```python with open(local_path, "rb") as f: uploaded_file = target_folder.files.create_upload_session( f, size_chunk, print_upload_progress, "recording.mp4" ).execute_query() ```

Closing this one since considered resolved