Posts: get

投稿 ID で 1 つの投稿を取得します。 今すぐ試すまたは例を見る

限定公開のブログに投稿する場合は、承認が必要です。投稿が一般公開のブログ上にある場合は、このメソッドを許可なく呼び出すことができます。

リクエスト

HTTP リクエスト

GET https://www.googleapis.com/blogger/v3/blogs/blogId/posts/postId

パラメータ

パラメータ名 説明
必須パラメータ
blogId string 投稿を取得するブログの ID。
postId string 投稿の ID。
オプション パラメータ
maxComments unsigned integer 投稿リソースの一部として取得するコメントの最大数。このパラメータを指定しないと、コメントは返されません。
view string

有効な値は次のとおりです。
  • "ADMIN": 管理者レベルの詳細
  • "AUTHOR": 著者レベルの詳細
  • "READER": 管理者レベルの詳細

リクエスト本文

このメソッドをリクエストの本文に含めないでください。

レスポンス

成功すると、このメソッドはレスポンスの本文で Post リソースを返します。

注: このメソッドで使用可能なコード例では、サポートされているプログラミング言語すべての例を示しているわけではありません(サポートされている言語の一覧については、クライアント ライブラリ ページをご覧ください)。

Java

Java クライアント ライブラリを使用します

// The BlogId for the http://buzz.blogger.com/ blog.
String BUZZ_BLOG_ID = "2399953";
// The PostId for a buzz post with comments.
String BUZZ_POST_ID = "5310628572012276714";
// Configure the Java API Client for Installed Native App
HttpTransport HTTP_TRANSPORT = new NetHttpTransport();
JsonFactory JSON_FACTORY = new JacksonFactory();
// Configure the Installed App OAuth2 flow.
Credential credential = OAuth2Native.authorize(HTTP_TRANSPORT,
JSON_FACTORY, new LocalServerReceiver(),
Arrays.asList(BloggerScopes.BLOGGER));
// Construct the Blogger API access facade object.
Blogger blogger = Blogger.builder(HTTP_TRANSPORT, JSON_FACTORY)
.setApplicationName("Blogger-PostsGet-Snippet/1.0")
.setHttpRequestInitializer(credential).build();
// The request action.
Get postsGetAction = blogger.posts().get(BUZZ_BLOG_ID, BUZZ_POST_ID);
// Restrict the result content to just the data we need.
postsGetAction.setFields("author/displayName,content,published,title,url");
// This step sends the request to the server.
Post post = postsGetAction.execute();
// Now we can navigate the response. System.out.println("Title: " + post.getTitle());
System.out.println("Author: " + post.getAuthor().getDisplayName());
System.out.println("Published: " + post.getPublished());
System.out.println("URL: " + post.getUrl());
System.out.println("Content: " + post.getContent());

実習

以下の API Explorer を使用して、ライブデータでこのメソッドを呼び出し、レスポンスを確認します。