My team has a lot of shared files and directories on a business OneDrive account and this package has worked well in accessing them. However, we noticed this week that when listing shared files or items the responses are not what we would expect. When performing the code below we each get a random smattering of files. Not a list of folders and files like we used to get. Any ideas?
#Code I ran
library(AzureGraph)
gr <- get_graph_login()
me <- gr$get_user()
my_drive <- me$do_operation("drive/sharedWithMe")
My team has a lot of shared files and directories on a business OneDrive account and this package has worked well in accessing them. However, we noticed this week that when listing shared files or items the responses are not what we would expect. When performing the code below we each get a random smattering of files. Not a list of folders and files like we used to get. Any ideas?