We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scenario: user adds a record in SharePoint List and upload files as attachment.
Goal: be able to download attachments into an R session.
Able to show that attachments exist, but no method to list attachments' URL or download them.
SharePoint attachments don't seem to be stored in any of the drives either, so can't get from there.
my_site <- Microsoft365R::sharepoint_site( site_url = config::get("sp_site"), app = AzureGraph:::.az_cli_app_id ) data_raw <- my_site$get_list("List")$list_items() data_raw %>% select(id, Attachments) # _List_ showing attachments #> id Attachments #> 1 7 FALSE #> 2 8 TRUE # _List_ folder showing empty even though it has attachments my_site$get_drive()$list_files() name size isdir 1 General 16643828 TRUE 2 List 0 TRUE 3 Weekly Report 12600039 TRUE 4 Untitled.png 8835 FALSE
The text was updated successfully, but these errors were encountered:
This isn't yet possible with the Graph API. I'll look into it when this changes.
Sorry, something went wrong.
No branches or pull requests
Scenario: user adds a record in SharePoint List and upload files as attachment.
Goal: be able to download attachments into an R session.
Current State
Able to show that attachments exist, but no method to list attachments' URL or download them.
SharePoint attachments don't seem to be stored in any of the drives either, so can't get from there.
The text was updated successfully, but these errors were encountered: