অনুমোদন প্রয়োজন
একটি পোস্ট আপডেট করে। এখন এটি চেষ্টা করুন বা একটি উদাহরণ দেখুন ।
অনুরোধ
HTTP অনুরোধ
PUT https://www.googleapis.com/blogger/v3/blogs/blogId/posts/postId
পরামিতি
পরামিতি নাম | মান | বর্ণনা |
---|---|---|
প্রয়োজনীয় পরামিতি | ||
blogId | string | ব্লগের আইডি। |
postId | string | পোস্টের আইডি। |
অনুমোদন
এই অনুরোধের জন্য নিম্নলিখিত স্কোপের মধ্যে অন্তত একটির অনুমোদন প্রয়োজন ( প্রমাণিকরণ এবং অনুমোদন সম্পর্কে আরও পড়ুন )।
ব্যাপ্তি |
---|
https://www.googleapis.com/auth/blogger |
শরীরের অনুরোধ
অনুরোধের অংশে, একটি পোস্ট সংস্থান সরবরাহ করুন।
প্রতিক্রিয়া
সফল হলে, এই পদ্ধতিটি প্রতিক্রিয়া বডিতে একটি পোস্ট সংস্থান প্রদান করে।
উদাহরণ
দ্রষ্টব্য: এই পদ্ধতির জন্য উপলব্ধ কোড উদাহরণগুলি সমস্ত সমর্থিত প্রোগ্রামিং ভাষার প্রতিনিধিত্ব করে না (সমর্থিত ভাষার তালিকার জন্য ক্লায়েন্ট লাইব্রেরি পৃষ্ঠা দেখুন)।
জাভা
জাভা ক্লায়েন্ট লাইব্রেরি ব্যবহার করে
// The BlogId of a test blog.
String TEST_BLOG_ID = "8070105920543249955";
// The PostId of a post.
String POST_ID = "4883581657838685651";
// 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-PostsUpdate-Snippet/1.0")
.setHttpRequestInitializer(credential).build();
// Construct the post update body
Post content = new Post();
content.setId(Long.parseLong(POST_ID));
content.setTitle("A test post, updated");
content.setContent("With <emph>exciting</emph> <code>HTML</code> content");
// The request action.
Update postsUpdateAction = blogger.posts().update(TEST_BLOG_ID, POST_ID, content);
// Restrict the result content to just the data we need.
postsUpdateAction.setFields("author/displayName,content,published,title,url"); // This step sends the request to the server. Post post = postsUpdateAction.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 এক্সপ্লোরার ব্যবহার করুন।