GitHub - openedoo/module_media: Openedoo module to upload media, like discussion attachments. current status is WIP.

Skip to content

Navigation Menu

Sign in

Appearance settings

Openedoo module to upload media, like discussion attachments. curresnt status is WIP.

Upload file

curl example:

curl -X POST \
  --data-binary '@some_file_with_image.jpg' \
  http://127.0.0.1:5000/media/ \
  -H 'cache-control: no-cache' \
  -H 'content-type: image/jpeg' \

Content-type header request must match with the file mime-type, list of mime-type

Download file

[GET] http://<hostname>/media/static/<file_name>