gpt4 book ai didi

java - 博主 api 帖子图片

转载 作者:行者123 更新时间:2023-11-30 03:21:32 26 4
gpt4 key购买 nike

我正在尝试使用 java api 添加带有图像的帖子。正如文档所描述的( https://developers.google.com/blogger/docs/3.0/reference/posts ),我们可以拥有一个带有 URL 的图像。运行以下代码没有帮助: 帖子内容 = new Post(); 内容.setTitle(...); 内容.setContent(...);

    List<Images> images=new ArrayList<Images>();
for (PostAttachment attachment : attachmentsList) {
Images img=new Post.Images();
String imageUrl="http://amazon.com/mybucket/example.jpg";
img.setUrl(imageUrl);
images.add(img);

}
content.setImages(images);
}
// The request action.
Insert postsInsertAction = blogger.posts()
.insert(userId(), content);

顺便说一句,我看到我们需要将图像上传到 picassaweb(请提供链接?)。不知道它们是否仍然相关。

谢谢, 弗雷迪

最佳答案

我现在正在使用 Blogger API,并且在使用 Python 时遇到了同样的问题,谷歌提供的用于发布图像的代码示例不起作用。

您必须通过 html img-tag 将图像添加到您的内容中。

这就是 Python 的工作原理,但与 Java 应该类似:

request = posts.insert(blogId=your_blog_id, body = {"title" : "content title", "content" : "some text ... <img src = 'http://amazon.com/mybucket/example.jpg' title = 'test' alt = 'test' style='width:304px;height:228px;'>"}).execute()

关于java - 博主 api 帖子图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31209682/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com