Postingan: getByPath

Mengambil postingan menurut jalur. Coba sekarang atau lihat contohnya.

Otorisasi diperlukan jika postingan berada di blog yang bersifat pribadi.

Jalur postingan adalah bagian dari URL postingan setelah host. Misalnya, postingan blog dengan URL http://code.blogger.com/2011/09/blogger-json-api-now-available.html memiliki jalur /2011/09/blogger-json-api-now-available.html.

Permintaan

Permintaan HTTP

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

Parameter

Nama parameter Nilai Deskripsi
Parameter yang diperlukan
blogId string ID blog tempat mengambil postingan.
path string Jalur Postingan yang akan diambil.
Parameter opsional
maxComments unsigned integer Jumlah maksimum komentar yang akan diambil untuk postingan. Jika parameter ini tidak ditentukan, tidak ada komentar yang akan ditampilkan sebagai bagian dari resource postingan.
view string

Nilai yang dapat diterima:
  • "ADMIN": Detail tingkat admin
  • "AUTHOR": Detail tingkat penulis
  • "READER": Detail tingkat admin

Isi permintaan

Jangan berikan isi permintaan dengan metode ini.

Respons

Jika berhasil, metode ini akan menampilkan Resource Postingan dalam isi respons.

Contoh

Catatan: Contoh kode yang tersedia untuk metode ini tidak merepresentasikan semua bahasa pemrograman yang didukung (lihat halaman library klien untuk mengetahui daftar bahasa yang didukung).

Java

Menggunakan library klien 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());

Cobalah!

Gunakan APIs Explorer di bawah untuk memanggil metode ini pada data langsung dan melihat responsnya.