[Pedido] a_http - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Pedido] a_http (
/showthread.php?tid=397462)
a_http -
tonisantolia - 05.12.2012
Vejo muita gente usando agora.. Existe algum tutorial bem explicado sobre ela? fiquei curioso quanto a suas funзхes.
Re: a_http -
Jason` - 05.12.2012
http://forum.sa-mp.com/showthread.ph...highlight=http
Re: a_http - Joao Pedro - 05.12.2012
Nгo tem muito o que explicar, a funзгo em si й auto-explicativa. Ela faz a requisiзгo a uma pбgina e captura a resposta.
Re: a_http -
Schocc - 05.12.2012
Aproveitando o Tуpico alguem pode criar um script de test que Imprime os resultados no console print!
Re: a_http -
BreakDriFT - 05.12.2012
pawn Код:
CMD:ler(playerid)
{
HTTP(playerid, HTTP_GET, "site.com/arquivo.txt", "", "MyHttpResponse");
return 1;
}
public MyHttpResponse(index, response_code, data[])
{
// In this callback "index" would normally be called "playerid" ( if you didn't get it already :) )
new
buffer[ 128 ];
if(response_code == 200) //Did the request succeed?
{
//Yes!
format(buffer, sizeof(buffer), "Dados recebidos: %s", data);
printf("%s",buffer);
}
else
{
//No!
format(buffer, sizeof(buffer), "The request failed! The response code was: %d", response_code);
printf("%s",buffer);
}
}
Isso ?