-
Notifications
You must be signed in to change notification settings - Fork 198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create a photoset post using several urls #114
Comments
The Tumblr API doesn't allow to post a photoset using multiple urls, you'd have to send them using the data tag. |
#Creates a photoset post using several local filepaths
client.create_photo(blogName, state="draft", tags=["jb is cool"], format="markdown",
data=["/Users/johnb/path/to/my/image.jpg", "/Users/johnb/Pictures/kittens.jpg"],
caption="## Mega sweet kittens") |
I'm checking the documentation and I see that there is another endpoint to create a new post entry ( So it's possible to create a post with a photoset coming for severals urls images using the new format set up by the tumblr api (https://www.tumblr.com/docs/npf). But this change involve some extra work on this library because other post creation (text, video, etc.) will be impacted. |
i cant figure out how create photoset using several urls
if someone could explain to me, it whould be great
The text was updated successfully, but these errors were encountered: