{"id":16239753,"url":"https://github.com/nopnop2002/esp-idf-multipart-upload","last_synced_at":"2025-03-19T16:31:34.860Z","repository":{"id":108987842,"uuid":"314360109","full_name":"nopnop2002/esp-idf-multipart-upload","owner":"nopnop2002","description":"A multipart file upload example for esp-idf","archived":false,"fork":false,"pushed_at":"2024-02-07T20:40:02.000Z","size":96,"stargazers_count":15,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-28T19:53:16.331Z","etag":null,"topics":["esp-idf","esp32","flask","multipart","multipart-uploads","tornado"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nopnop2002.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-11-19T20:17:16.000Z","updated_at":"2025-01-19T17:27:57.000Z","dependencies_parsed_at":null,"dependency_job_id":"2f6c237a-bc7a-446f-b392-c061ac38216b","html_url":"https://github.com/nopnop2002/esp-idf-multipart-upload","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nopnop2002%2Fesp-idf-multipart-upload","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nopnop2002%2Fesp-idf-multipart-upload/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nopnop2002%2Fesp-idf-multipart-upload/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nopnop2002%2Fesp-idf-multipart-upload/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nopnop2002","download_url":"https://codeload.github.com/nopnop2002/esp-idf-multipart-upload/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244006260,"owners_count":20382441,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["esp-idf","esp32","flask","multipart","multipart-uploads","tornado"],"created_at":"2024-10-10T13:45:02.731Z","updated_at":"2025-03-19T16:31:34.118Z","avatar_url":"https://github.com/nopnop2002.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# esp-idf-multipart-upload\nA multipart file upload example for esp-idf.\n\n# Server Side\nDownload the server from [here](https://github.com/nopnop2002/multipart-upload-server).\n\n---\n\n# ESP32 Side\n\n## Software requirements\nESP-IDF V4.4/V5.x.   \nESP-IDF V5.0 is required when using ESP32-C2.   \nESP-IDF V5.1 is required when using ESP32-C6.   \n\n\n## Installation\n```\ngit clone https://github.com/nopnop2002/esp-idf-multipart-upload\ncd esp-idf-multipart-upload/\nidf.py set-target {esp32/esp32s2/esp32s3/esp32c2/esp32c3}\nidf.py menuconfig\nidf.py flash\n```\n\n\n## Configuration   \nYou have to set this config value with menuconfig.   \n- CONFIG_ESP_WIFI_SSID   \nSSID of your wifi.\n- CONFIG_ESP_WIFI_PASSWORD   \nPASSWORD of your wifi.\n- CONFIG_ESP_MAXIMUM_RETRY   \nMaximum number of retries when connecting to wifi.\n- CONFIG_ESP_WEB_SERVER   \nIP address or mDNS host name of your WEB Server.\n- CONFIG_ESP_WEB_PORT   \nPort number of your WEB Server.\n- CONFIG_ESP_WEB_PATH   \nPath of your WEB Server.\n\n![menuconfig-1](https://user-images.githubusercontent.com/6020549/99719529-c07e8700-2aef-11eb-8a11-e5a7aaf2cbd4.jpg)\n![menuconfig-2](https://user-images.githubusercontent.com/6020549/99719539-c3797780-2aef-11eb-9cc4-4053c2640434.jpg)\n\n## WiFi Setting\n![menuconfig-3](https://user-images.githubusercontent.com/6020549/99719544-c70cfe80-2aef-11eb-8242-9ee855b5c8c2.jpg)\n\n## HTTP Server Setting\n\n![menuconfig-4](https://user-images.githubusercontent.com/6020549/178969271-63738e64-0a88-48be-9b24-8927b499a1bf.jpg)\n\n## About multipart/form-data\nThis example send this HTTP header.   \nIf the parameter expected by the server is not \"upfile\", you need to change it.   \n```\nPOST PATH HTTP/1.1\nHOST: HOST:PORT\nUser-Agent: esp-idf/X.Y.Z esp32\nAccept: */*\nContent-Type: multipart/form-data; boundary=X-ESPIDF_MULTIPART\nContent-Length: xxx\n\n--X-ESPIDF_MULTIPART\nContent-Disposition: form-data; name=\"upfile\"; filename=\"hoge.jpg\"\nContent-Type: Content-Type: application/octet-stream\n\nbinary-data\n\n--X-ESPIDF_MULTIPART--\n```\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnopnop2002%2Fesp-idf-multipart-upload","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnopnop2002%2Fesp-idf-multipart-upload","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnopnop2002%2Fesp-idf-multipart-upload/lists"}