Flask Project API
GETGet Last Post
https://flask-api-ml-model.herokuapp.com/api/posts/last?token=TOKEN_KEY
Allows registered users with a valid API key to get their last published post.
PARAMS
token
Example Request
Get Last Post
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers
POSTPublish a Post
https://flask-api-ml-model.herokuapp.com/api/posts/new?token=TOKEN_KEY&title=POST_TITLE&content=POST_CONTENT
Allows registered users with a valid API token to publish a post.
PARAMS
token
title
content
Example Request
Publish a Post
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers
DELETEDelete Last Post
https://flask-api-ml-model.herokuapp.com/api/posts/delete?token=TOKEN_KEY
Allows registered users with a valid API token to delete their last post.
PARAMS
token
Example Request
Delete Last Post
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers
POSTClassify Emotion in an Image
https://flask-api-ml-model.herokuapp.com/api/emoclassifier?token=TOKEN_KEY
Allows registered users with a valid API token to classify emotion in an image.
PARAMS
token
Bodyformdata
image
Example Request
Classify Emotion in an Image
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers