非公開のブログに投稿する場合は承認が必要です。
投稿のパスは、投稿の URL のホストより後の部分です。たとえば、URL 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 |
投稿について取得するコメントの最大数。このパラメータを指定しない場合、POST リソースの一部としてコメントは返されません。 |
view |
string |
有効な値は次のとおりです。
|
リクエスト本文
このメソッドをリクエストの本文に含めないでください。
レスポンス
成功すると、このメソッドはレスポンスの本文で Posts リソースを返します。
例
注: このメソッドで使用可能なコード例では、サポートされているプログラミング言語すべての例を示しているわけではありません(サポートされている言語の一覧については、クライアント ライブラリ ページをご覧ください)。
Java
Java クライアント ライブラリを使用します
// The BlogId for the http://buzz.blogger.com/ blog.
String BUZZ_BLOG_ID = "2399953";
// 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 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-PostsGetByPath-Snippet/1.0")
.setHttpRequestInitializer(credential).build();
// The request action.
GetByPath postsGetByPathAction = blogger.posts().getByPath(BUZZ_BLOG_ID);
postsGetByPathAction.setPath(BUZZ_POST_PATH);
// Restrict the result content to just the data we need.
postsGetByPathAction.setFields("content,published,title");
// This step sends the request to the server.
Post post = postsGetByPathAction.execute();
// Now we can navigate the response.
System.out.println("Title: " + post.getTitle());
System.out.println("Published: " + post.getPublished());
System.out.println("Content: " + post.getContent());
試してみよう:
以下の API Explorer を使用して、ライブデータに対してこのメソッドを呼び出し、レスポンスを確認してください。