rdrop2
rdrop2 copied to clipboard
Dropbox Interface from R
We need to spend a bit of time improving coverage. Some bits will be challenging/impossible (e.g. auth) but we should be able to make improvements elsewhere
Error in curl::curl_fetch_memory(url, handle = handle) : Couldn't resolve host 'api.dropboxapi.com'
Since some time, rdrop 0.7 and now 0.8 - when I make a clean auth in session (removed all object from globalspace / cleaned cache files from project -> rm...
pkgdown generates static html documentation for an R package that can be served from GitHub Pages. This pull request adds the static files generated by `pkgdown::build_site()` using the default `pkgdown::init_site()`...
Many of these API endpoints return one or more metadata objects. We handle them differently in different places, which is not ideal. In `drop_dir`, we flatten the nested output and...
In order to upload a file into a folder without giving it a different (base)name, a user has to build the path themselves, e.g. `drop_upload(file, paste0(folder, "/", file))`. This happens...
We currently have a utility function `add_slashes` that helps deal with the fact the Dropbox API generally expects a starting slash for path arguments, though this isn't always the case;...
We barely use it, so it would be pretty easy to remove. One reason to keep it in would be if we start chaining things together more, esp. if we...
I think `drop_read_csv` defines a really useful pattern: `drop_get` to a local tempfile, then use `read.csv` on it. There's a hard limitation on `read.csv`; if I want to use, say...
The common `oauth_listener needs an interactive environement` (e.g. #64) seems to often be due to `.httr-auth` not being where `drop_auth` expects it to be. This is a pretty unintuitive error...
Verbose on/off should not change what a function returns. It should just print additional information. `pretty_lists` might need a replacement. This is a meta issue that affects a bunch of...