โพสต์: getByPath

เรียกข้อมูลโพสต์ตามเส้นทาง ลองเลยหรือดูตัวอย่าง

ต้องระบุการให้สิทธิ์หากโพสต์อยู่ในบล็อกส่วนตัว

เส้นทางของโพสต์เป็นส่วนหนึ่งของ 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 รหัสของบล็อกที่จะใช้ดึงข้อมูลโพสต์
path 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 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());