-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Detailed blog on how API works #55
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Please put example and get,post requests example thing in code blocks wherever necessary
- Your blog doesn't include markdown edit style so please refer this
- And headings like Introduction & other headings should be in bold
@@ -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. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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: | ||
|
||
|
||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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: | ||
|
||
|
||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
put this in code blocks
Response | ||
If the request succeeds, the server responds with an HTTP 200 OK status code and the contents of the post: | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
put this in codeblocks
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: | ||
|
||
|
||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
put this in code blocks
|
||
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. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add proper markdown editing you can refer this
"blogs": { | ||
"selfLink": "https://www.googleapis.com/blogger/v3/users/901569848744/blogs" | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add proper conclusion in the end
I have written a blog post on How API works.