From 01823e72921d2be5ca6670bf2719c968a12169d0 Mon Sep 17 00:00:00 2001 From: Julien Colomb Date: Mon, 8 Jul 2019 14:59:16 +0200 Subject: [PATCH] clarify token use I hope it makes it easier to understand and it insist on the problems with drop_create (see #68 ) --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e3aacb5..ab98040 100644 --- a/README.md +++ b/README.md @@ -172,10 +172,11 @@ saveRDS(token, "droptoken.rds") # ******** WARNING ******** # read it back with readRDS token <- readRDS("droptoken.rds") -# Then pass the token to each drop_ function +# Then pass the token to each drop_ function or use this function as a preamble drop_acc(dtoken = token) ``` +NB: `drop_create (..., dtoken = token)` does not to work (rdrop2 0.8.1). There you need to call `drop_acc(dtoken = token)` before `drop_create (...)` __Meta__