Hi I was trying(for fun) to make an app that would connect to my router, which requests password using pop-up prompt box, so I don't know what the name of the values are, but I can use "user:passwd@modemip" to connect to it, but the sf::Http returns 1001 when I try to attempt this, so I've tried sending a post request like this:
Http::Request request("/");
request.setMethod(Http::Request::Post);
request.setField("Content-Type", "application/x-www-form-urlencoded");
request.setBody("sysUserName=user&sysPassword=passwd");
where sysUsername and sysPassword were the same as in modem site for changing username and password.
Is there any way to perform a working http request or should I resort to sockets?