“Como converter o comando curl em solicitação http” Respostas de código

Curl post

# dont forget the content type, else it will throw an error

curl -X POST -H "Content-Type: application/json" \
 -d '{"username":"abc","password":"abc"}' \
 https://api.example.com/v2/login
GutoTrosla

Curl post

curl -X POST -d "param1=value1&param2=value2" https://example.com/post
garzj

Como converter o comando curl em solicitação http

curl -X 'POST' \
  'https://v4.chatpro.com.br/chatpro-pap1awboek/api/v1/send_message' \
  -H 'accept: application/json' \
  -H 'Authorization: u4s1ej2dayvudfpe18y6gkmo6vjg4l' \
  -H 'Content-Type: application/json' \
  -d '{
  "message": "string",
  "number": "48999851795",
  "quoted_message_id": "string"
}'
juliano casteller vicentin

Respostas semelhantes a “Como converter o comando curl em solicitação http”

Perguntas semelhantes a “Como converter o comando curl em solicitação http”

Mais respostas relacionadas para “Como converter o comando curl em solicitação http” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código