u1sync: erro: --oauth requer uma chave e um segredo juntos no formato KEY: SECRET

2

Eu corro o Ubuntu 12.04 em um servidor sem cabeçalho.

Eu configurei uma conta do Ubuntu One.

Eu instalei o ubuntuone-sso-login.py e criei uma chave com ele.

Eu corri:

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

E eu sempre recebo esta mensagem de erro:

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

O que eu fiz de errado?

    
por Peter Langenberg 01.08.2012 / 00:48

2 respostas

2

Resolvemos isso, mas queremos compartilhá-lo:

#!/bin/bash

OAUTH_TOKEN=Ffdxxxxxx
OAUTH_TOKEN_SECRET=oDxxx

OAUTH=$OAUTH_TOKEN:$OAUTH_TOKEN_SECRET

/usr/bin/u1sync --oauth $OAUTH 

Eu também tive que remover o (=) igual após o --oauth

    
por Peter Langenberg 02.08.2012 / 16:06
0

Alternativamente, você pode usar este guia para usar o cliente atual do Ubuntu One sem cabeça:

link

    
por Roberto Alsina 03.08.2012 / 15:27