tumblr / jumblr

Tumblr API v2 Java Client
Apache License 2.0
278 stars 105 forks source link

Photo Post Won't Save #100

Closed agieocean closed 7 years ago

agieocean commented 7 years ago

Here is my code:

PhotoPost curPost = client.newPost("a blog", PhotoPost.class);
File image = new File(location);
curPost.setCaption(body);
curPost.setPhoto(new Photo(image));
curPost.save();

Text posts work just fine but when I do this the post will not save, it does not throw any error and all other methods before save succeed without throwing an error. Save seems to complete but when I check the blog it's supposed to be posting to I see nothing.

agieocean commented 7 years ago

Issue was due to another method, closed.