如何使用Blogger API获取标签/类别列表

时间:2022-02-04 07:03:59

Anyone know how to get tag/category list using blogger api. Currently there is nothing documented about it

任何人都知道如何使用blogger api获取标签/类别列表。目前没有任何关于它的文件记录

2 个解决方案

#1


From searching the docs and the mailing list of the Blogger API group, there isn't an official way to do this. Here's one fairly good response, which basically comprises of reading all the blog entries and counting up all of the tags and so forth. I believe the code in this thread is Python, you can find other threads by searching the mailing list: http://groups.google.com/group/bloggerDev

通过搜索Blogger API组的文档和邮件列表,没有正式的方法来执行此操作。这是一个相当不错的回复,它基本上包括阅读所有博客条目和计算所有标签等等。我相信这个帖子中的代码是Python,你可以通过搜索邮件列表找到其他线程:http://groups.google.com/group/bloggerDev

#2


Blogger calls them labels, but they can be found in the exported XML, they look like;

Blogger称它们为标签,但它们可以在导出的XML中找到,它们看起来像;

<category scheme='http://www.blogger.com/atom/ns#' term='Some label'/>

#1


From searching the docs and the mailing list of the Blogger API group, there isn't an official way to do this. Here's one fairly good response, which basically comprises of reading all the blog entries and counting up all of the tags and so forth. I believe the code in this thread is Python, you can find other threads by searching the mailing list: http://groups.google.com/group/bloggerDev

通过搜索Blogger API组的文档和邮件列表,没有正式的方法来执行此操作。这是一个相当不错的回复,它基本上包括阅读所有博客条目和计算所有标签等等。我相信这个帖子中的代码是Python,你可以通过搜索邮件列表找到其他线程:http://groups.google.com/group/bloggerDev

#2


Blogger calls them labels, but they can be found in the exported XML, they look like;

Blogger称它们为标签,但它们可以在导出的XML中找到,它们看起来像;

<category scheme='http://www.blogger.com/atom/ns#' term='Some label'/>