char *input; //or give the size char input[20];
char *input2;
//or give the size char input[20];
printf("What is your name?\n-->");
gets(input);
string nameObj = "{ \"name\": " + '"' + input + '"' + " }";
printf("What do you want to send?\n-->");
gets(input2);
string jsonObj = "{ \"content\": " + '"' + input2 + '"' + ", \"tts\": true }";