Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
183 views
in Technique[技术] by (71.8m points)

c++ - cURLpp Send JSON with GET request

I tried to send a GET request (to https://api.binance.com/api/v3/depth) but I can't seem to find how to send a JSON payload with it. I found this:

std::string body;
body = "{"symbol":"BTCUSDT","limit":5}";

request.setOpt(new curlpp::options::HttpHeader(header));
request.setOpt(new curlpp::options::PostFields(body));
request.setOpt(new curlpp::options::PostFieldSize(body.length()));

But this seems to convert the request to a POST (understandably) and if I make it a GET again with

request.setOpt(new curlpp::options::Post(0));

it just ignores the previously set fields.

Note: I could include the info in the URL but I specifically want to know if it's possible to send a JSON.

question from:https://stackoverflow.com/questions/65847267/curlpp-send-json-with-get-request

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

57.0k users

...