Como abrir o cURL no Firefox ou outro navegador?

0

Eu tenho o Firebug instalado no Firefox. No painel Net , todas as solicitações de rede são listadas. Quando clico com o botão direito do mouse e escolho Copiar como cURL , como eu uso este cURL?

Como posso repetir meus dados de solicitação POST usando cURL?

O cURL copiado é assim:

curl 'http://www.softwareishard.com/firebug/tips/resend/hello.php' -H 'Host: www.softwareishard.com' -H 'User-Agent: Mozilla/5.0 (Windows NT 6.0; rv:26.0) Gecko/20100101 Firefox/26.0' -H 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8' -H 'Accept-Language: en-US,en;q=0.5' -H 'Accept-Encoding: gzip, deflate' -H 'Content-Type: application/x-www-form-urlencoded; charset=UTF-8' -H 'Referer: http://www.softwareishard.com/firebug/tips/resend/resend.html' --data 'name=Bob'
    
por Patrioso 30.01.2016 / 02:34

1 resposta

0

O cURL não faz parte do Firefox nem do Firebug, ou seja, não pode ser executado lá. Como o wiki do Firebug explica :

cURL is a command line tool for transferring data with URL syntax. Firebug's Copy As cURL command recreates the HTTP request (including HTTP headers and query string parameters) and copies it as a cURL command string to the clipboard. The string can be pasted into a terminal window to execute the same request or for example pasted to a client that supports cURL. In cases where the server serves compressed responses the preference extensions.firebug.net.curlAddCompressedArgument can be set to true and Firebug will add the --compressed argument to the generated command string.

Ele também se refere à página inicial da cURL .

O que o Firebug oferece é reenviar a solicitação clicada com o botão direito por meio da opção Reenviar no menu de contexto.

    
por 30.01.2016 / 17:16