Я пытаюсь отправить на сервер http://192.168.1.22:8080/user/
, который принимает формат {"age":29,"id":"maverick","name":"Pranjal"}
, но при вставке данных он возвращает мне xml и css содержимое страницы. Мой код
void UserManagement::insertUserData()
{
/*
string id=userDetails.getId();
string name = userDetails.getName();
string age = userDetails.getAge();
*/
string insertDetails = "{\"age\":99,\"id\":\"123\",\"name\":\"John\"}";
CURL *curl;
CURLcode res;
/* In windows, this will init the winsock stuff */
curl_global_init(CURL_GLOBAL_ALL);
/* get a curl handle */
curl = curl_easy_init();
if (curl) {
/* First set the URL that is about to receive our POST. This URL can
just as well be a https:// URL if that is what should receive the
data. */
curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
curl_easy_setopt(curl, CURLOPT_POST, 1L);
/* Now specify the POST data */
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, insertDetails.c_str());
/* Check for errors */
if (res != CURLE_OK)
fprintf(stderr, "curl_easy_perform() failed: %s\n",
curl_easy_strerror(res));
curl_easy_cleanup(curl);
}
curl_global_cleanup();
}
Я новичок в curl, поэтому, пожалуйста, попробуйте объяснить на простом английском языке sh. Заранее спасибо.
В коде url="http://192.168.1.22:8080/user/"