Socket add parameter
This command is a Socket Command. This command adds a POST or GET data variable that will be used in the next navigate command.
The commands works within the socket container command.
Example
If you are logging into a website, you will need the post data for the login fields.
This includes the name attribute for the username field, the password field, and any other field you might need to fill to log in.
The Web Inspector feature in UBot Studio allows you to find the information you need in web browser.
Logging into the website in the browser with the Web Inspector open and the Network Tab selected will show you the POST data for the information you need.
We will need the POST data for the log in process. It should be the first POST path in the list that appears after you log in.
A socket navigate command will have to be created and set to POST, since we will be sending data in order to log into the web page.
The Web Inspector provides the Request url for the socket navigate command.
plugin command("SocketCommands.dll", "socket navigate", "POST", "http://allrecipes.com/Services/Client.svc/Login")
Parameters will need to be created for each piece of information that is needed to complete the login process.