পোস্ট: পেতে

পোস্ট আইডি দ্বারা একটি পোস্ট পুনরুদ্ধার. এখন এটি চেষ্টা করুন বা একটি উদাহরণ দেখুন

পোস্টটি ব্যক্তিগত ব্লগে থাকলে অনুমোদনের প্রয়োজন হয়। যদি পোস্টটি এমন একটি ব্লগে হয় যা সর্বজনীন, তবে এই পদ্ধতিটি অনুমোদন ছাড়াই কল করা যেতে পারে।

অনুরোধ

HTTP অনুরোধ

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

পরামিতি

পরামিতি নাম মান বর্ণনা
প্রয়োজনীয় পরামিতি
blogId string ব্লগের আইডি থেকে পোস্টটি আনতে হবে।
postId string পোস্টের আইডি।
ঐচ্ছিক পরামিতি
maxComments unsigned integer পোস্ট রিসোর্সের অংশ হিসেবে পুনরুদ্ধার করতে মন্তব্যের সর্বোচ্চ সংখ্যা। যদি এই প্যারামিটারটি অনির্দিষ্ট রেখে দেওয়া হয়, তাহলে কোনো মন্তব্য ফেরত দেওয়া হবে না।
view string

গ্রহণযোগ্য মান হল:
  • " ADMIN ": অ্যাডমিন স্তরের বিশদ
  • " AUTHOR ": লেখক স্তরের বিশদ
  • " READER ": অ্যাডমিন স্তরের বিশদ

শরীরের অনুরোধ

এই পদ্ধতির সাথে একটি অনুরোধ সংস্থা সরবরাহ করবেন না।

প্রতিক্রিয়া

সফল হলে, এই পদ্ধতিটি প্রতিক্রিয়া বডিতে একটি পোস্ট সংস্থান প্রদান করে।

উদাহরণ

দ্রষ্টব্য: এই পদ্ধতির জন্য উপলব্ধ কোড উদাহরণগুলি সমস্ত সমর্থিত প্রোগ্রামিং ভাষার প্রতিনিধিত্ব করে না (সমর্থিত ভাষার তালিকার জন্য ক্লায়েন্ট লাইব্রেরি পৃষ্ঠা দেখুন)।

জাভা

জাভা ক্লায়েন্ট লাইব্রেরি ব্যবহার করে

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

এটা চেষ্টা করুন!

লাইভ ডেটাতে এই পদ্ধতিতে কল করতে এবং প্রতিক্রিয়া দেখতে নীচের APIs এক্সপ্লোরার ব্যবহার করুন।