Open
Conversation
Ruchip16
suggested changes
Oct 31, 2021
| @@ -0,0 +1,714 @@ | |||
| The Blogger API enables you to integrate Blogger content with your application by using the REST APIs. Before you begin, you will need to set up authorization. | |||
Contributor
There was a problem hiding this comment.
can you please edit the blog as per contributing guidelines mentioned here
| @@ -0,0 +1,714 @@ | |||
| The Blogger API enables you to integrate Blogger content with your application by using the REST APIs. Before you begin, you will need to set up authorization. | |||
|
|
|||
| Introduction: | |||
Contributor
There was a problem hiding this comment.
Please edit the headings properly acc to markdown editing style like here Introduction should be in h2 / h3
| If the request succeeds, the server responds with an HTTP 200 OK status code and the contents of the post: | ||
|
|
||
|
|
||
| { |
Contributor
There was a problem hiding this comment.
Please add code blocks where ever necessary
| If the request succeeds, the server responds with an HTTP 200 OK status code and the list of comments: | ||
|
|
||
|
|
||
| { |
| Response | ||
| If the request succeeds, the server responds with an HTTP 200 OK status code and the contents of the post: | ||
|
|
||
|
|
| If the request succeeds, the server responds with an HTTP 200 OK status code and a link to a list of the user's blogs: | ||
|
|
||
|
|
||
| { |
|
|
||
| GET https://www.googleapis.com/blogger/v3/users/self | ||
| Authorization: /* OAuth 2.0 token here */ | ||
| Note: The user must be authenticated to list their own information, so you must provide the Authorization HTTP header with the GET request. |
| "blogs": { | ||
| "selfLink": "https://www.googleapis.com/blogger/v3/users/901569848744/blogs" | ||
| } | ||
| } |
Contributor
There was a problem hiding this comment.
Please add proper conclusion in the end
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I have written a blog post on How API works.