โพสต์: รับ

เรียกโพสต์ 1 รายการตามรหัสโพสต์ ลองใช้เลยหรือดูตัวอย่าง

ต้องมีการให้สิทธิ์หากโพสต์อยู่บนบล็อกส่วนตัว หากโพสต์อยู่ในบล็อกสาธารณะ ระบบจะใช้วิธีนี้ได้โดยไม่ได้รับอนุญาต

ส่งคำขอ

คำขอ HTTP

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

พารามิเตอร์

ชื่อพารามิเตอร์ ค่า คำอธิบาย
พารามิเตอร์ที่จําเป็น
blogId string รหัสของบล็อกที่จะดึงข้อมูลโพสต์
postId string รหัสของโพสต์
พารามิเตอร์ที่ไม่บังคับ
maxComments unsigned integer จํานวนความคิดเห็นสูงสุดที่จะดึงมาเป็นส่วนหนึ่งของทรัพยากรโพสต์ หากไม่ระบุพารามิเตอร์นี้ ระบบจะไม่แสดงผลความคิดเห็น
view string

ค่าที่ยอมรับมีดังนี้
  • "ADMIN": รายละเอียดระดับผู้ดูแลระบบ
  • "AUTHOR": รายละเอียดระดับผู้เขียน
  • "READER": รายละเอียดระดับผู้ดูแลระบบ

เนื้อหาของคำขอ

อย่าให้เนื้อหาคําขอด้วยวิธีนี้

คำตอบ

หากสําเร็จวิธีนี้จะแสดงทรัพยากรโพสต์ในส่วนเนื้อหาของการตอบกลับ

ตัวอย่าง

หมายเหตุ: ตัวอย่างโค้ดที่มีสำหรับวิธีการนี้ไม่ได้แสดงถึงภาษาโปรแกรมที่รองรับทั้งหมด (ดูรายการภาษาที่รองรับได้ในหน้าไลบรารีของไคลเอ็นต์)

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 ด้านล่างเพื่อเรียกใช้วิธีการนี้สําหรับข้อมูลสดและดูการตอบกลับ