gera o token para OAuth (Twitter)

4

Estou escrevendo um script simples para baixar o stream do Twitter:

curl -H "Authorization: ${TOKEN}" "$URL"

e estou procurando uma maneira de gerar o $TOKEN . Eu tenho toda a entrada necessária (CONSUMER_KEY, ...), mas onde posso obter o programa oauth_sign que irá gerar o token a partir dos dados de entrada?

TOKEN=$(oauth_sign $CONSUMER_KEY $CONSUMER_SECRET $ACCESS_TOKEN $ACCESS_SECRET GET $URL)
    
por Martin Vegter 15.09.2013 / 14:24

2 respostas

5

Acabei de baixar o link @goldilocks fornecido, link e confirmei que ele é compilado. Parece muito direto.

compilar

$ make
gcc -c -Wall -O liboauthsign.c
liboauthsign.c: In function ‘oauth_sign’:
liboauthsign.c:123:5: warning: implicit declaration of function ‘getpid’
liboauthsign.c:305:5: warning: pointer targets in passing argument 4 of ‘HMAC’ differ in signedness
/usr/include/openssl/hmac.h:99:16: note: expected ‘const unsigned char *’ but argument is of type ‘char *’
rm -f liboauthsign.a
ar rc liboauthsign.a liboauthsign.o
ranlib liboauthsign.a
gcc -Wall -O oauth_sign.c -L. -loauthsign -lcrypto -o oauth_sign

uso

$ ./oauth_sign --help
usage:  oauth_sign [-q] consumer_key consumer_key_secret token token_secret method url [name=value ...]

trecho do README

To use it, you supply the four cryptographic cookies and the method and URL of the request. If it's a POST request with extra parameters, you have to give those too. Oauth_sign puts all this together and makes the signature string. The signature is generated using HMAC-SHA1 as specified in RFC section 3.4.2, and is returned as an Authorization header value as specified in RFC section 3.5.1. This header can then be used in an HTTP request via, for example, the -h flag in http_get(1) and http_post(1) or the -H flag in curl(1).

Parece que vem com uma biblioteca expondo as funções para uso em seus próprios aplicativos em C também.

    
por 15.09.2013 / 15:31
1

Obtenha um feed de fluxo de um usuário do Twitter usa comandos bash para abrir um fluxo do Twitter. (de commandlinefu.com)

Passo 1 - Criar as quatro chaves oauth necessárias para um feed de fluxo do Twitter.

Passo 2 - Criar a string básica de assinatura necessária para um feed de fluxo do Twitter.

Passo 3 - Crie o oauth token necessário para um feed de fluxo do Twitter.

Passo 4 - Crie a autorização cabeçalho necessário para um feed de fluxo do Twitter.

    
por 10.03.2017 / 21:22