我正在尝试使用oauth验证api调用 我有消费者的钥匙和秘密,所以希望只使用DotNetOpenOAuth和嘿presto,但经过一个令人沮丧的一天和痛苦的头,我无法弄清楚..
我有以下示例 - 使用python-oauth2库在python中工作 - 任何人都有关于如何翻译它的经验/想法?我能找到的一切都是处理基于用户的回调网址 - 但在这里我只是有一个更复杂的旧用户版本/ pwd(知道它有点复杂 - 但希望得到我的要点!)
consumer=oauth.Consumer(key='CONSUMERKEY', secret='ITSASECRET')
# Your unique key:
token= oauth.Token('CLIENTKEY','ITSASECRET')
# The client object which combines both consumer and token:
client = oauth.Client(consumer, token=token)
# To figure out what reporting options you have, first run the following:
response_headers, response_content = client.request(url)
# The below will display the reporting options you have available:
print cjs
on.dumps(response_content)
编辑:已更新,以反映这是OAuth 1.0,而不是2