Flask API Server for ColorSsokSsok Aplication
`https://apissokssok-m52f5s4c4q-du.a.run.app`
POST /auth/signin
form-data: {email : "", password:""}
{token : ""},200
{message:"There was an error while logging in"},400
POST /auth/signup
form-data: {email : "", password:"", displayName : ""}
{'token':{$JWT Token},'displayName':{$displayName}}200
1. 이메일이 NULL 일 때 {"Username i s Missing"},400
2. Password가 비어 있을 때 {"Password is Missing"},400
3. 계정 생성에 실패했을 때(계정 중복, 이메일 형식 혹은 비밀번호 부적합) : "Error occur in creating user"
`POST /auth/forgotPassword
form-data: {email : ""}
200
POST /image/processing
form-data: {filename : ""}
{{$Converted_Image_URL}},200
GET /image/myfiles
Authorization : jwt token
[[{$filename},{$Image_URL}],...],200
GET /image/myfiles/beforeConvert
Authorization : jwt token
[[{$filename},{$Image_URL}],...],200
GET /image/myfiles/afterConvert
Authorization : jwt token
[[{$filename},{$Image_URL}],...],200
GET /image/myfiles/Coloring
Authorization : jwt token
[[{$filename},{$SVG_URL}],...],200
GET /image/myfiles/Submit
Authorization : jwt token
[[{$filename},{$Image_URL}],...],200
GET /image/myfiles/groupby
Authorization : jwt token
[[Image : {$Image_URL}, ConvertedImage: {$Image_URL}, SVG : {$SVG_URL}],...],200
GET /image/getfile/beforeConvert?filename=""
데이터 전달 : Header - Authorization : jwt token / URI - filename : ""
결과값 : 성공 시 - {$Image_URL},200
GET /image/getfile/afterConvert?filename=""
데이터 전달 : Header - Authorization : jwt token / URI - filename : "" 결과값 : 성공 시 - {$Image_URL},200
GET /image/getfile/Coloring?filename=""
Authorization : jwt token / URI - filename : ""
결과값 : 성공 시 - {$SVG_URL},200
`GET /image/getfile/Submit?filename=""`
데이터 전달 : Header - Authorization : jwt token / URI - filename : ""
결과값 : 성공 시 - {$Image_URL},200