u1sync:错误:--oauth 需要密钥和秘密,格式为 KEY:SECRET

u1sync:错误:--oauth 需要密钥和秘密,格式为 KEY:SECRET

我在无头服务器上运行 Ubuntu 12.04。

我已经建立了一个 Ubuntu One 帐户。

我已经安装ubuntuone-sso-login.py并用它生成了密钥。

我跑了:

u1sync --init --oauth=[here I've put the key with cut and past from the step before] [directory name]

我总是收到这个错误信息:

u1sync: error: --oauth requires a key and secret together in the  form KEY:SECRET

我做错了什么?

答案1

我们已经解决了这个问题,但我想分享它:

#!/bin/bash

OAUTH_TOKEN=Ffdxxxxxx
OAUTH_TOKEN_SECRET=oDxxx

OAUTH=$OAUTH_TOKEN:$OAUTH_TOKEN_SECRET

/usr/bin/u1sync --oauth $OAUTH 

我还必须删除 --oauth 后面的 (=) 等号

答案2

或者,您可以使用本指南以无头方式使用当前的 Ubuntu One 客户端:

https://wiki.ubuntu.com/UbuntuOne/Headless

相关内容