我正在尝试使用 python 将图片发布到 tumblr,特别是:http ://code.google.com/p/python-tumblr/
#!/usr/bin/python
from tumblr import Api
import sys
BLOG='example.tumblr.com'
USER='example@example.com'
PASSWORD='example'
api = Api(BLOG,USER,PASSWORD)
post_data = "picture.png"
title = "Title of my entry"
body = "this is a story with a picture"
api.write_regular(title, body + post_data)
当我运行它时,结果是博客到达,而不是:
我的条目标题
这是一个有照片的故事
[图片]
我明白了:
我的条目标题
这是一个带有picturepicture.png的故事