Hello App Developers,
In my application am going to call http requests that is get method and post method.
I have referred this link "https://developer.tizen.org/development/guides/native-application/connectivity-and-wireless/internet-and-contents-downloads/http".
This works fine for get method as well as for post method. I am getting responce from server.
but here i am not passing parameters properly so am not getting success response for post method.
like this am going to pass the parameters
const char* post_msg = "email=abcd@gmail.com&password=12312345678";
So can anyone help me on this?
Thanks in advance.