Yayınlar: getByPath

Yola göre bir gönderi alır. Hemen deneyin veya örneğe göz atın.

Gönderi özel bir blogdaysa yetkilendirme gerekir.

Gönderinin yolu, gönderi URL'sinin ana makineden sonraki kısmıdır. Örneğin, http://code.blogger.com/2011/09/blogger-json-api-now-available.html URL'sine sahip bir blog yayınının yolu /2011/09/blogger-json-api-now-available.html olur.

İstek

HTTP isteği

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

Parametreler

Parametre adı Değer Açıklama
Gerekli parametreler
blogId string Gönderinin getirileceği blogun kimliği.
path string Alınacak gönderinin yolu.
İsteğe bağlı parametreler
maxComments unsigned integer Bir yayın için alınacak maksimum yorum sayısı. Bu parametre belirtilmeden bırakılırsa yayın kaynağının bir parçası olarak yorum döndürülmez.
view string

Kabul edilen değerler şunlardır:
  • "ADMIN": Yönetici düzeyinde ayrıntı
  • "AUTHOR": Yazar düzeyinde ayrıntılar
  • "READER": Yönetici düzeyinde ayrıntı

İstek içeriği

Bu yöntemle istek gövdesi sağlamayın.

Yanıt

Başarılı olursa bu yöntem, yanıt gövdesinde bir Posts kaynağı döndürür.

Örnekler

Not: Bu yöntem için kullanıma sunulan kod örnekleri, desteklenen tüm programlama dillerini kapsamaz (Desteklenen dillerin listesi için istemci kitaplıkları sayfasını inceleyin).

Java

Java istemci kitaplığını kullanır.

// 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());

Deneyin.

Bu yöntemi canlı verilerde çağırmak ve yanıtı görmek için aşağıdaki API Gezgini'ni kullanın.