Giter Site home page Giter Site logo

mini_blog's Introduction

Api's with name(relative urls)

ADD BLOG:
url - /app1/blog/
method - post
sample request payload(json) -
{
	"title": "test blog",
	"content": "para1\n\npara2\n\npara3"
}
sample response -
{
    "status": "Request Successful.",
    "msg": "Blog created.",
    "blog_id": 26
}

PAGINATED BLOGS(blog list):
url - /app1/blogs/ or /app1/blogs/<page_number>
method - get
request payload - not needed
sample response -
{
    "status": "",
    "msg": "",
    "blogs": {
        "15": [<blog_id>
            [
                [
                    "para1",<paragraph_text>
                    12<paragraph_id>
                ]
            ],
            [
                [
                    "para2",
                    13
                ]
            ],
            [
                [
                    "para3",
                    14
                ]
            ]
        ],
        "17": [
            [
                [
                    "para1",
                    18
                ]
            ],
            [
                [
                    "para2",
                    19
                ]
            ],
            [
                [
                    "para3",
                    20
                ]
            ]
        ],
    },
    "current_page": 1,
    "total_pages": 3
}

BLOG DETAILS:
url - /app1/blog/<blog_id>/
method - post
sample request payload - not needed.
sample response -
{
    "status": "",
    "msg": "",
    "blog_details": {
        "content": [
            [
                [
                    "para1",<paragraph_text>
                    9<paragraph_id>
                ],
                [<comments_array(orderd by date)>
                    "salty comment",
                ]
            ],
            [
                [
                    "para2",
                    10
                ],
                []
            ],
            [
                [
                    "para3",
                    11
                ],
                []
            ]
        ],
        "title": "test blog"
    }
}

ADD COMMENTS:
url - /app1/blog/paragraph/<paragraph_id>/comment/
method - post
sample request payload(json) -
{
	"blog_id": "14",
	"comment_text": "salty comment"
}
sample response -
{
    "status": "Request successfull.",
    "msg": "Comment added.",
    "comment_id": 3
}

mini_blog's People

Contributors

niks660097 avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.