0

如何通过代理使用 Tumblr api。任何帮助将不胜感激。

我想使用通过代理进行 api 调用的 Tumblr api。

任何有关如何实现这一目标的帮助将不胜感激。谢谢。

这是在没有代理的情况下使用 api 的正常方式。它们是我使用代理的一种方式吗?

import pytumblr
client = pytumblr.TumblrRestClient(
    '<consumer_key>',
    '<consumer_secret>',
    '<oauth_token>',
    '<oauth_secret>',
)

client.info() # get information about the authenticating user
client.dashboard() # get the dashboard for the authenticating user
client.likes() # get the likes for the authenticating user
client.following() # get the blogs followed by the authenticating user
# How can I use it with proxy, that's authenticate with proxy.
4

1 回答 1

1

pytumblr 使用requests发送 HTTP 请求。所以你可以设置 bash 环境变量 'HTTP_PROXY' 和 'HTTPS_PROXY' 像

$ export HTTP_PROXY="http://127.0.0.1:1080" # or socks5
$ export HTTPS_PROXY="http://127.0.0.1:1080"
$ python3 ./tumblr_code.py

或者

import os

os.environ['HTTP_PROXY'] = 'http://127.0.0.1:1080'
os.environ['HTTPS_PROXY'] = 'http://127.0.0.1:1080'

// remaining pytumblr codes
于 2019-02-16T14:56:11.537 回答