# Veröffentlichungsanfrage
In diesem Abschnitt wird der Erstellungsvorgang erläutert und die Anfragen werden per POST an den Dienst gesendet Smart Proxy von Crawlbase.
# Formulardaten
Der Befehl, den Sie hier erhalten, sendet einen Kommentar an eine POST-Anfrage, die Sie transportieren möchten Formulardaten.
- curl
- Rubin
- Knoten
- php
- python
- go
curl -H 'Content-Type: application/x-www-form-urlencoded' \
-F 'param=value' \
-X POST \
-x "http://[email protected]:8012" \
-k "http://httpbin.org/anything"
# Daten JSON
Senden Sie mir eine POST-Anfrage, die Sie erhalten möchten Daten JSON, melden Sie sich bitte beim nächsten Befehl.
- curl
- Rubin
- Knoten
- php
- python
- go
curl -H "accept: application/json" \
--data '{"key1":"value1","key2":"value2"}' \
-X POST \
-x "http://[email protected]:8012" \
-k "http://httpbin.org/anything"