| 339 | |
| 340 | |
| 341 | Request Request::Post(string url, const unordered_map<string, string>& headers, const vector<pair<string, string>>& params, |
| 342 | const vector<uint8_t>& body, std::function<bool(size_t, size_t)> downloadProgress, |
| 343 | std::function<bool(size_t, size_t)> uploadProgress) |
| 344 | { |
| 345 | return Request("POST", url, headers, params, body, downloadProgress, uploadProgress); |
| 346 | } |
| 347 | |
| 348 | |
| 349 | Request Request::Post(string url, const unordered_map<string, string>& headers, const vector<pair<string, string>>& params, |