4
POST verilerini cURL ile nasıl görüntülersiniz?
Örnek olarak, -v argümanına sahip bir web sunucusuna POSTing: curl -v http://testserver.com/post -d "firstname=john&lastname=doe" Ve çıktı > POST /post HTTP/1.1 > User-Agent: curl/7.19.7 (universal-apple-darwin10.0) libcurl/7.19.7 OpenSSL/0.9.8l zlib/1.2.3 > Host: testserver.com > Accept: */* > Content-Length: 28 > Content-Type: application/x-www-form-urlencoded > < HTTP/1.1 200 OK (etc) Gönderdiğim verilerden hiç bahsedilmiyor. CURL'de …