This is a RESTful API for managing blog posts. It allows users to create, read, update, and delete blog posts. Token-based authentication is used to secure the API endpoints.
To get started with the API, follow these steps:
-
Clone the repository:
https://github.com/Satyam1923/blog-api.git
-
Install dependencies:
cd blog-api npm install .
-
Set up environment variables
Create a
.env
file in the root directory and add the following variables:JWT_SECRET=your_jwwt_secret FIREBASE_DATABASE_URL=https://<yourfirebaseprojectid>.firebaseio.com PORT = 3000
-
Start the serve:
npm start
POST /token
Generate a JWT token for authenication.
Request Body:
{
"username":"exampl_user"
}
Response:
{
"token":"generated_jwk_token"
}
For any CRUD operation authorization token header is required.
POST /posts
Create a new blog post.
Request Body:
{
"title": "Post Title",
"content": "Post Content"
}
Response:
{
"id": "post_id",
"title": "Post Title",
"content": "Post Content",
"createdAt": "timestamp"
}
GET /posts
Get all blog posts.
Response:
[
{
"id": "post_id",
"title": "Post Title",
"content": "Post Content",
"createdAt": "timestamp"
},
{
"id": "post_id",
"title": "Post Title",
"content": "Post Content",
"createdAt": "timestamp"
}
]
GET /posts/:id
Get a specific blog post by ID. Response:
{
"id": "post_id",
"title": "Post Title",
"content": "Post Content",
"createdAt": "timestamp"
}
PUT /posts/:id
Update a specific blog post by ID.
Request Body:
{
"title": "New Post Title",
"content": "New Post Content"
}
Response:
{
"id": "post_id",
"title": "New Post Title",
"content": "New Post Content"
}
DELETE /posts/:id
Delete a specific blog post by ID.
Respone:
{
"message":"Post deleted"
}