* sendRequest * @param type const char * "GET", "POST", .... * @param payload String data for the message body * @return */
| 546 | * @return |
| 547 | */ |
| 548 | int HTTPClient::sendRequest(const char *type, String payload) { |
| 549 | return sendRequest(type, (uint8_t *)payload.c_str(), payload.length()); |
| 550 | } |
| 551 | |
| 552 | /** |
| 553 | * sendRequest |
nothing calls this directly
no test coverage detected