How do you a autofill a website form using C++ | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How do you a autofill a website form using C++

I am trying to fill in a website form automatically.

17th Feb 2018, 3:48 AM
Sikai Huang
Sikai Huang - avatar
4 Answers
0
Do you want to make form action with http requests?
17th Feb 2018, 4:02 AM
Toni Isotalo
Toni Isotalo - avatar
0
Yes
17th Feb 2018, 4:22 AM
Sikai Huang
Sikai Huang - avatar
0
if you want to make http requests​ in c++, then I would recommend the curl library. https://curl.haxx.se
17th Feb 2018, 4:41 AM
Jared Bird
Jared Bird - avatar
0
Use fiddler to catch the request and look for the body syntax. Remember to set Content-type header to application/x-www-form-urlencoded
17th Feb 2018, 5:26 AM
Toni Isotalo
Toni Isotalo - avatar