{"id":22350701,"url":"https://github.com/timmoth/httprequester","last_synced_at":"2025-08-20T14:07:26.866Z","repository":{"id":132588210,"uuid":"563041311","full_name":"Timmoth/HttpRequester","owner":"Timmoth","description":"Small library for making http requests from a Raspberry Pi Pico running Arduino core","archived":false,"fork":false,"pushed_at":"2022-11-09T16:26:57.000Z","size":13,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-26T11:35:59.024Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Timmoth.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2022-11-07T19:36:09.000Z","updated_at":"2022-11-09T16:27:12.000Z","dependencies_parsed_at":null,"dependency_job_id":"31ac4284-fd28-4163-8208-b3209d654cc0","html_url":"https://github.com/Timmoth/HttpRequester","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Timmoth/HttpRequester","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Timmoth%2FHttpRequester","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Timmoth%2FHttpRequester/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Timmoth%2FHttpRequester/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Timmoth%2FHttpRequester/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Timmoth","download_url":"https://codeload.github.com/Timmoth/HttpRequester/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Timmoth%2FHttpRequester/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271330292,"owners_count":24740815,"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","status":"online","status_checked_at":"2025-08-20T02:00:09.606Z","response_time":69,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2024-12-04T11:12:49.618Z","updated_at":"2025-08-20T14:07:26.842Z","avatar_url":"https://github.com/Timmoth.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# HttpRequester\n\nSmall library that helps make HTTP requests on an ESP32 device.\n\nOriginally written to help reduce boiler plate code around making HTTP requests for my IOT projects using a Raspberry Pi Pico w.\n\n\n### Usage:\n\n------------\n\n- clone the repo to the Arduino libraries directory\n\n`cd C:\\Users\\\u003cusername\u003e\\Documents\\libraries\n`\n\n`git clone https://github.com/Timmoth/HttpRequester.git\n`\n- Add Arduino pico to your board manager (file-\u003epreferences-\u003eadditional board manager urls) paste the following url\n\n`https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json`\n\n- Include library in your project\n```c\n#include \u003cHttpRequester.h\u003e\n```\n\n- Connect to your WiFi network\n```c\n WiFi.mode(WIFI_STA);\nWiFiMulti.addAP(ssid, password);\n  while ((WiFiMulti.run() != WL_CONNECTED)) {\n    Serial.println(\"connecting...\");\n  }\n ```\n- make request\n```c\n  HttpResponse* postResponse = requester-\u003ePost(\"/api/user\", \"{\\\"name\\\":\\\"Tim\\\"}\", \"application/json\");\n  if (postResponse == NULL || !postResponse-\u003eIsSuccess()) {\n    return;\n  }\n\n  Serial.println(\"Response: \" + postResponse-\u003eBody);\n ```\n\n### Tests:\n\n------------\n\nTests are written using [ElkTest](https://github.com/Timmoth/ElkTest \"ElkTester\") see project readme for more instructions.\n\n### Upcoming:\n- Accomadate HTTP requests\n- Investigate validating SSL certs\n- Improve documentation\n- Add more tests\n- Make available to the Arduino IDE Library manager\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimmoth%2Fhttprequester","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftimmoth%2Fhttprequester","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimmoth%2Fhttprequester/lists"}