如何向博主添加帖子?

时间:2019-07-04 12:06:32

标签: android blogger

我搜索了很多教程,但没有找到在Android Studio中使用api在Blogger中插入帖子的教程。因此,任何人都可以使用博客的项目代码在android应用中显示帖子,并使用api添加帖子。

1 个答案:

答案 0 :(得分:1)

我建议您查看如何在Android中制作network requests并使用一些API。您可以使用Retrofit库来实现此目的。

如果您想使用某个应用将博客上传到Blogger,请查看Blogger API Docs

编辑-如何在Blogger上添加帖子-

官方docs建议

You can add a post for a blog by sending a POST request to the post collection URI with a post JSON body 因此,建议您使用Retrofit来为Blogger API制作一个POST request

此外,请注意,您必须对此进行身份验证。