Posts: update
Stay organized with collections
Save and categorize content based on your preferences.
Requires authorization
Updates a post.
Try it now or see an example.
Request
HTTP request
PUT https://www.googleapis.com/blogger/v3/blogs/blogId/posts/postId
Parameters
Parameter name |
Value |
Description |
Required parameters |
blogId |
string |
The ID of the Blog.
|
postId |
string |
The ID of the Post.
|
Authorization
This request requires authorization with at least one of the following scopes (read more about authentication and authorization).
Scope |
https://www.googleapis.com/auth/blogger |
Request body
In the request body, supply a Posts resource.
Response
If successful, this method returns a Posts resource in the response body.
Examples
Note: The code examples available for this method do not represent all supported programming languages (see the client libraries page for a list of supported languages).
Java
Uses the Java client library
// 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());
Try it!
Use the APIs Explorer below to call this method on live data and see the response.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-08-08 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-08-08 UTC."],[[["\u003cp\u003eThis \u003ccode\u003ePUT\u003c/code\u003e request updates an existing blog post with provided content using the Blogger API.\u003c/p\u003e\n"],["\u003cp\u003eRequires authorization with the \u003ccode\u003ehttps://www.googleapis.com/auth/blogger\u003c/code\u003e scope to modify posts.\u003c/p\u003e\n"],["\u003cp\u003eYou need to provide \u003ccode\u003eblogId\u003c/code\u003e and \u003ccode\u003epostId\u003c/code\u003e as parameters in the request URL to identify the target post.\u003c/p\u003e\n"],["\u003cp\u003eThe request body should contain a \u003ccode\u003ePosts\u003c/code\u003e resource with updated post data.\u003c/p\u003e\n"],["\u003cp\u003eA successful response returns the updated \u003ccode\u003ePosts\u003c/code\u003e resource with details like author, content, and publishing information.\u003c/p\u003e\n"]]],[],null,["**Requires [authorization](#auth)**\n\nUpdates a post.\n[Try it now](#try-it) or [see an example](#examples).\n\nRequest\n\nHTTP request \n\n```\nPUT https://www.googleapis.com/blogger/v3/blogs/blogId/posts/postId\n```\n\nParameters\n\n| Parameter name | Value | Description |\n|----------------|----------|---------------------|\n| **Required parameters** |||\n| `blogId` | `string` | The ID of the Blog. |\n| `postId` | `string` | The ID of the Post. |\n\nAuthorization\n\nThis request requires authorization with at least one of the following scopes ([read more about authentication and authorization](/blogger/docs/3.0/using#auth)).\n\n| Scope |\n|-------------------------------------------|\n| `https://www.googleapis.com/auth/blogger` |\n\nRequest body\n\nIn the request body, supply a [Posts resource](/blogger/docs/3.0/reference/posts#resource).\n\nResponse\n\nIf successful, this method returns a [Posts resource](/blogger/docs/3.0/reference/posts#resource) in the response body.\n\nExamples\n\n**Note:** The code examples available for this method do not represent all supported programming languages (see the [client libraries page](/blogger/docs/3.0/libraries) for a list of supported languages). \n\nJava\n\nUses the [Java client library](http://code.google.com/p/google-api-java-client/) \n\n```java\n// The BlogId of a test blog.\nString TEST_BLOG_ID = \"8070105920543249955\";\n\n// The PostId of a post.\nString POST_ID = \"4883581657838685651\";\n\n// Configure the Java API Client for Installed Native App\nHttpTransport HTTP_TRANSPORT = new NetHttpTransport();\nJsonFactory JSON_FACTORY = new JacksonFactory();\n\n// Configure the Installed App OAuth2 flow.\nCredential credential = OAuth2Native.authorize(HTTP_TRANSPORT,\n\tJSON_FACTORY, new LocalServerReceiver(),\n\tArrays.asList(BloggerScopes.BLOGGER));\n\n// Construct the Blogger API access facade object.\nBlogger blogger = Blogger.builder(HTTP_TRANSPORT, JSON_FACTORY)\n\t.setApplicationName(\"Blogger-PostsUpdate-Snippet/1.0\")\n\t.setHttpRequestInitializer(credential).build();\n\n// Construct the post update body\nPost content = new Post();\ncontent.setId(Long.parseLong(POST_ID));\ncontent.setTitle(\"A test post, updated\");\ncontent.setContent(\"With \u003cemph\u003eexciting\u003c/emph\u003e \u003ccode\u003eHTML\u003c/code\u003e content\");\n\n// The request action.\nUpdate postsUpdateAction = blogger.posts().update(TEST_BLOG_ID, POST_ID, content);\n\n// Restrict the result content to just the data we need.\npostsUpdateAction.setFields(\"author/displayName,content,published,title,url\");\n\n// This step sends the request to the server.\nPost post = postsUpdateAction.execute();\n\n// Now we can navigate the response.\nSystem.out.println(\"Title: \" + post.getTitle());\nSystem.out.println(\"Author: \" + post.getAuthor().getDisplayName());\nSystem.out.println(\"Published: \" + post.getPublished());\nSystem.out.println(\"URL: \" + post.getUrl());\nSystem.out.println(\"Content: \" + post.getContent());\n```\n\nTry it!\n\n\nUse the APIs Explorer below to call this method on live data and see the response."]]