Portal SAMP
[Ajuda] a_http... - Versão de Impressão

+- Portal SAMP (https://portalsamp.com)
+-- Fórum: SA-MP Mobile (https://portalsamp.com/forumdisplay.php?fid=11)
+--- Fórum: Área de suporte (https://portalsamp.com/forumdisplay.php?fid=12)
+--- Tópico: [Ajuda] a_http... (/showthread.php?tid=1151)



a_http... - Vaca_Marinha - 29/04/2021

Estou tentando fazer um request usando a include a_http, porém fica retornando um response code 1(HTTP_ERROR_BAD_HOST)

código:
Código PHP:
#include <a_samp>
#include <a_http>

forward MyHttpResponse(indexresponse_codedata[]);

public 
OnPlayerCommandText(playeridcmdtext[])
{
    if (!strcmp("/hello",cmdtext,true))
    {
        HTTP(playeridHTTP_GET"http://api.somecool.repl.co/yt-search?search=despacito""""MyHttpResponse");
        return 1;
    }
    return 0;
}

public 
MyHttpResponse(indexresponse_codedata[])
{
    // In this callback "index" would normally be called "playerid" ( if you didn't get it already:) )
    new
        buffer128 ];
    if (response_code == 200//Did the request succeed?
    {
        //Yes!
        format(buffersizeof(buffer), "The URL replied: %s"data);
        SendClientMessage(index0xFFFFFFFFbuffer);
    }
    else
    {
        //No!
        format(buffersizeof(buffer), "The request failed! The response code was: %d"response_code);
        SendClientMessage(index0xFFFFFFFFbuffer);
    }


Alguém teria uma sugestão do que pode ser feito?
Agradeço ; )


RE: a_http... - RodrigoMSR - 02/05/2021

Remova o http:// do link.


RE: a_http... - Vaca_Marinha - 03/05/2021

(02/05/2021 02:03)RodrigoMSR Escreveu: Remova o http:// do link.
Eu acabei descobrindo isso sem querer, mas valeu ae kkkkj


RE: a_http... - Calenzo - 18/06/2021

Que API boa, de verdade!