我对所有这些级别的问题感到困惑,我不得不通过刮痧这样做更容易只是通过刮痧来做到这一点,但我认为它是一个很好的练习学习dicts并且会更快或许我曾经搞清楚。
我的代码如下,其中cposts
的赋值语句返回404:
import pytumblr
# Authenticate via OAuth
client = pytumblr.TumblrRestClient(
'xxxxxxxxxxxxxxxxxxxxxxxxxxxx'
)
f = client.followers('blog.tumblr.com')
users = f['users']
names = [b['name'] for b in f['users']]
print names
cposts = client.posts(names[0], 'notes_info=True')
print (cposts)
但是python api信息说:client.posts(' codingjester',** params)#获取博客帖子
这个SO帖子(Getting more than 50 notes with Tumblr API)说你应该使用notes_info来获取笔记。但我不知道如何在python中构建它而不是制作URL。
我可以使用构建网址的请求,但我认为使用python / tumblr api有一种更简单的方法我只是想通了,如果有人可以照亮它。
答案 0 :(得分:1)
删除notes_info=True
周围的引号。您应该将值True
传递给notes_info
client
方法的posts()
参数。相反,您实际上将字符串'notes_info=True'
作为位置参数传递,这是无效的并导致pytumblr创建无效的URL,这就是您获得404的原因。