เรียกข้อมูลโพสต์ตามเส้นทาง ลองใช้เลยหรือดูตัวอย่าง
ต้องมีการให้สิทธิ์หากโพสต์อยู่ในบล็อกที่เป็นส่วนตัว
เส้นทางของโพสต์คือส่วนของ 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 |
ค่าที่ยอมรับมีดังนี้
|
เนื้อความของคำขอ
อย่าระบุเนื้อหาคำขอด้วยเมธอดนี้
การตอบกลับ
หากสำเร็จ เมธอดนี้จะแสดงทรัพยากรโพสต์ในเนื้อหาการตอบกลับ
ตัวอย่าง
หมายเหตุ: ตัวอย่างโค้ดที่มีสำหรับวิธีการนี้ไม่ได้แสดงถึงภาษาโปรแกรมที่รองรับทั้งหมด (ดูรายการภาษาที่รองรับได้ในหน้าไลบรารีของไคลเอ็นต์)
Java
// The BlogId for the http://buzz.blogger.com/ blog.
String BUZZ_BLOG_ID = "2399
953"; // 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 AppHttpTransport HTTP_TRANSPORT = new
NetHttpTransport();JsonFactory JSON_FACTORY = n
ew JacksonFactory(); // Configure the Instal
led App OAuth2 flow.Credential credential = OAuth2Native.autho
rize(HTTP_TRANSPORT, JSON_FACTORY, new Lo
calServerReceiver(), Arrays.asList(Blog
gerScopes.BLOGGER)); // Construct the Blogger API a
ccess facade object.Blogger blogger = Blogger.builder(HTTP_TRAN
SPORT, JSON_FACTORY) .setApplicationName("Blogger-Pos
tsGetByPath-Snippet/1.0") .setHttpRequestIn
itializer(credential).b
uild(); // The request action.GetByPath postsGetByPathAction = blogger.po
sts().getByPath(BUZZ_BLOG_ID);postsGetByPathA
ction.setPath(BUZZ_POST_PATH); // Restrict the result con
tent to just the data we need.postsGetByPathAction.setFiel
ds("content,published,title"); // Th
is step sends the request to the server.Pos
t post = postsGetByPathAction.execute
(); // Now we can navigate the response.System.o
ut.println("Title: " + post.getTitle());System
.out.println("Published: " + post.getPublished());System.out.println("Content: " + post.getContent());
ลองใช้งาน
ใช้โปรแกรมสำรวจ API ด้านล่างเพื่อเรียกเมธอดนี้ในข้อมูลสดและดูการตอบกลับ