“Solicitud postal de curl” Código de respuesta

CURL POST JSON

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

Post de rizado

# 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

Post de rizado

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

Post de rizado

curl --data '' https://example.com/resource.cgi

curl -X POST https://example.com/resource.cgi

curl --request POST https://example.com/resource.cgi
Awful Anaconda

Solicitud postal de curl

curl -d "user=user1&pass=abcd" https://example.com/login
Prickly Parrot

CURL HTTP POST Solicitud Ejemplo de localhost

{
    "value":"nodejs"
}
Salem Alqahtani

Respuestas similares a “Solicitud postal de curl”

Preguntas similares a “Solicitud postal de curl”

Más respuestas relacionadas con “Solicitud postal de curl” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código