如果帖子位于私密博客上,则需要授权。
帖子的路径是帖子网址中位于主机后面的部分。例如,网址为 http://code.blogger.com/2011/09/blogger-json-api-now-available.html
的博文的路径为 /2011/09/blogger-json-api-now-available.html
。
请求
HTTP 请求
GET https://www.googleapis.com/blogger/v3/blogs/blogId/posts/bypath
参数
参数名称 | 值 | 说明 |
---|---|---|
必需参数 | ||
blogId |
string |
要从中获取帖子的博客的 ID。 |
path |
string |
要检索的帖子的路径。 |
可选参数 | ||
maxComments |
unsigned integer |
要检索的帖子评论数量上限。如果未指定此参数,则不会返回任何评论作为帖子资源的一部分。 |
view |
string |
可接受的值包括:
|
请求正文
使用此方法时请勿提供请求正文。
响应
如果成功,此方法将在响应正文中返回一项 Posts 资源。
示例
注意:此方法的代码示例并未涵盖所有支持的编程语言(请参阅客户端库页面,查看支持的语言清单)。
Java
使用 Java 客户端库
// The BlogId for the http://buzz.blogger.com/ blog.
String BUZZ_BLOG_ID = "2399
953"; // The URL path component for a
buzz post.String BUZZ_POST_PATH = "/2012/01/engage-with-your-readers
-through.html"; // Configure the Java API Client for
Installed Native AppHttpTransport HTTP_TRANSPORT = new
NetHttpTransport();JsonFactory JSON_FACTORY = n
ew JacksonFactory(); // Configure the Instal
led App OAuth2 flow.Credential credential = OAuth2Native.autho
rize(HTTP_TRANSPORT, JSON_FACTORY, new Lo
calServerReceiver(), Arrays.asList(Blog
gerScopes.BLOGGER)); // Construct the Blogger API a
ccess facade object.Blogger blogger = Blogger.builder(HTTP_TRAN
SPORT, JSON_FACTORY) .setApplicationName("Blogger-Pos
tsGetByPath-Snippet/1.0") .setHttpRequestIn
itializer(credential).b
uild(); // The request action.GetByPath postsGetByPathAction = blogger.po
sts().getByPath(BUZZ_BLOG_ID);postsGetByPathA
ction.setPath(BUZZ_POST_PATH); // Restrict the result con
tent to just the data we need.postsGetByPathAction.setFiel
ds("content,published,title"); // Th
is step sends the request to the server.Pos
t post = postsGetByPathAction.execute
(); // Now we can navigate the response.System.o
ut.println("Title: " + post.getTitle());System
.out.println("Published: " + post.getPublished());System.out.println("Content: " + post.getContent());
试试看!
使用下面的 API Explorer 对实际数据调用此方法,然后查看响应。