FilmTalks

ํ•„๋ฆ„ํ† ํฌ ๊ธ€ ๋“ฑ๋ก

POST /filmtalks/register/:user_id

Request Body

Name
Type
Description

image

blob

category*

string

title*

string

contents

text

{
    // Response
    message: "Successfully registered"
}

ํ•„๋ฆ„ํ† ํฌ ์ด๋ฏธ์ง€ URL ๋“ฑ๋ก

POST /filmtalks/register/image/:user_id

{
    // Response
    message: "URL Successfully Created",
    url: imgURL
}

ํ•„๋ฆ„ํ† ํฌ ๊ธ€ ์ˆ˜์ •

PATCH /filmtalks/revision/:filmtalk_id

Request Body

Name
Type
Description

image

blob

category*

string

title

string

contents

string

{
    // Response
    message: "Successfully modified"
}

๊ฒŒ์‹œํŒ ๊ธ€ ์‚ญ์ œ

DELETE /filmtalks/deletion/:filmtalk_id

{
    // Response
    message: "Successfully deleted"
}

์ „์ฒด ๊ฒŒ์‹œ๊ธ€ ์กฐํšŒ (ํŽ˜์ด์ง€๋„ค์ด์…˜)

GET /filmtalks/total?offset&limit

{
    // Response
    message: "ok",
    data: {[
        board1, board2, ... boardN
    ]}
}

์„ ํƒํ•œ ๊ฒŒ์‹œํŒ ๊ธ€ ์ •๋ณด ์กฐํšŒ

GET /filmtalks/view/:board_id

{
    // Response
    message: "ok",
    data: {
        boardData
    }
}

Last updated