我正在尝试使用PyTumblr和edit_post 函数在我的 tumblr 博客中编辑一些帖子,但我无法确切知道需要哪些参数。我尝试输入 tags 参数,但不被接受。
我试过这个:
client = pytumblr.TumblrRestClient(CONSUMER_KEY, CONSUMER_SECRET,
OAUTH_TOKEN, OAUTH_TOKEN_SECRET)
client.edit_post('nameofblog', {'id': 39228373})
它给了我以下错误:
TypeError: edit_post() takes exactly 2 arguments (3 given)
有任何想法吗?
这是功能:
def edit_post(self, blogname, **kwargs):
"""
Edits a post with a given id
:param blogname: a string, the url of the blog you want to edit
:param tags: a list of tags that you want applied to the post
:param tweet: a string, the customized tweet that you want
:param date: a string, the GMT date and time of the post
:param format: a string, sets the format type of the post. html or markdown
:param slug: a string, a short text summary to the end of the post url
:returns: a dict created from the JSON response
"""
url = "/v2/blog/%s/post/edit" % blogname
return self.send_api_request('post', url, kwargs)