Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用回形针保管箱,但我没有成功使它工作:
$ rake dropbox:authorize APP_KEY=your_app_key APP_SECRET=your_app_secret ACCESS_TYPE=dropbox|foobar foobar : commande introuvable [7]+ Stoppé
你知道如何让它通过吗?
ACCESS_TYPE应该是dropbox或app_folder,具体取决于您为应用设置权限的方式。
ACCESS_TYPE
dropbox
app_folder
我猜你正在使用应用文件夹权限,所以请试试这个:
rake dropbox:authorize APP_KEY=abc123 APP_SECRET=xyz789 ACCESS_TYPE=app_folder
但将 abc123 和 xyz789 替换为您的应用程序密钥和密码。