[Pedido] a_http
#1

Vejo muita gente usando agora.. Existe algum tutorial bem explicado sobre ela? fiquei curioso quanto a suas funзхes.
Reply
#2

http://forum.sa-mp.com/showthread.ph...highlight=http
Reply
#3

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.
Reply
#4

Aproveitando o Tуpico alguem pode criar um script de test que Imprime os resultados no console print!
Reply
#5

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 ?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)