GameMaker GET and POST requests

U

User

Guest
Is it possible to send GET and POST requests, and recive a answer?
In most languages, this is done simply, and what about GML?

Like in delphi
---
var
some_variable:string;
begin
some_variable:=IdHTTP1.Get('http://forum.yoyogames.com/');
end;
---
 

FrostyCat

Redemption Seeker
See:
All of these work asynchronously, so don't try using these the same way you did in your synchronous example. The actual response is received in the HTTP event, not the function's return value. Read the examples at the bottom of each page linked above carefully.
 
Top