[Ajuda] Como converter um parametro http
#4

Код:
#include a_http

CMD:lt(playerid)
{
    HTTP(playerid, HTTP_GET, "www.*******inmp3.com/fetch/?format=text&video=http://www.youtube.com/watch?v=i62Zjga8JOM", "", "YT_HttpResponse");
	return 1;
}

forward YT_HttpResponse(playerid, response, data[]);
public YT_HttpResponse(playerid, response, data[])
{
    if(response == 200) //Sucesso (site retornou uma resposta)
    {
        new pos = strfind(data, "http://", true); //retornar posiзгo inicial do texto "http://"
        if(pos != -1) //se houver resultados
        {
            PlayAudioStreamForPlayer(playerid, data[pos]); //tocar o link data a partir da posiзгo encontrada
        }
    }
	return 1;
}
Reply


Messages In This Thread
Como converter um parametro http - by TheBob - 25.01.2017, 08:58
Programando e Relaxando - by RazorGuigo - 25.01.2017, 11:29
Re: Como converter um parametro http - by TheBob - 25.01.2017, 11:40
Re: Como converter um parametro http - by RodrigoMSR - 25.01.2017, 11:55
Re: Como converter um parametro http - by TheBob - 25.01.2017, 12:01

Forum Jump:


Users browsing this thread: 1 Guest(s)