Estou usando o windows 8.1, instalei usando o bash com o "Cygwin64", quando vou rodar o :"curl http://localhost:3000/pagamentos/pagamento" da segunda aula2 atividade 1, está retornando um html. O que tenho que fazer por favor?
Grato.
Estou usando o windows 8.1, instalei usando o bash com o "Cygwin64", quando vou rodar o :"curl http://localhost:3000/pagamentos/pagamento" da segunda aula2 atividade 1, está retornando um html. O que tenho que fazer por favor?
Grato.
Olá Maurício,
Talvez esteja faltando um header que diga para o servidor o formato em que deseja receber a resposta.
Tente executar o comando dessa maneira:
curl -H "Accept:application/json" -i "http://localhost:3000/pagamentos/pagamento"
ou
curl http://localhost:3000/pagamentos/pagamento -H "Accept:application/json"
Abraço
Consegui obrigado.