Jump to content

[solved]AutoIT HTTP POST


Recommended Posts

AutoIt has it's own useragent name, maybe that can be used to 'isolate' it. One can also set that useragent name to something other than the default.

HttpSetUserAgent

Then on the server side, just check for the useragent with php :

if($_SERVER['HTTP_USER_AGENT']!='myuseragent') {exit();} //if the useragent is different than "myuseragent" (set it with th function httpsetuseragent
//your code here

If you want to send post requests then the is what you want.

Br, FireFox;

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...