public
Description: An HTTP proxy for signing OAuth requests
Clone URL: git://github.com/mojodna/oauth-proxy.git
mojodna (author)
Tue Apr 22 18:09:44 -0700 2008
commit  e111113a37bd86cbf0a662d93ebb514f0c5ac087
tree    d9f8c9cc8444febb70915b7d86996aab98a7f4d5
parent  23e726e9a38be26eb09f2f8f3c8ba09c4d82eda2
oauth-proxy / README
100644 14 lines (9 sloc) 0.723 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
This is an OAuth proxy. It allows vanilla requests to be funneled through it and signed
appropriately using OAuth. For now, it only uses a single, pre-set access token.
 
To create an OAuth proxy server:
mktap oauth_proxy --consumer_key <consumer key> --consumer_secret <consumer secret> [--token <token>] [--token_secret <token secret>] [-p <proxy port>] [--ssl]
 
Start the generated tap (in the foreground):
twistd -nf oauth_proxy.tap
 
(For mktap to find oauth_proxy, you may need to make sure that "." is in your PYTHONPATH)
 
Or, just run it with twistd:
twistd -n oauth_proxy --consumer_key <consumer key> --consumer_secret <consumer secret> [--token <token>] [--token_secret <token secret>] [-p <proxy port>] [--ssl]