I need to create a c++ cgi app the accepts post data. I will be accepting a json object. How to I get the payload?
I can get the get data using the below
int main() {
bool DEBUG = true;
cout << "content-type: text/html" << endl << endl;
//WHAT GOES HERE FOR POST
json=?????
//THIS IS A GET
query_string = getenv("QUERY_STRING");
}