আমি লিনাক্স বাক্সে আমার অ্যাপাচি সার্ভারে একটি শিরোনাম প্রেরণ করতে চাই। আমি কীভাবে এটি কার্ল কলের মাধ্যমে অর্জন করতে পারি?
আমি লিনাক্স বাক্সে আমার অ্যাপাচি সার্ভারে একটি শিরোনাম প্রেরণ করতে চাই। আমি কীভাবে এটি কার্ল কলের মাধ্যমে অর্জন করতে পারি?
উত্তর:
পাওয়া:
JSON সহ:
curl -i -H "Accept: application/json" -H "Content-Type: application/json" http://hostname/resource
এক্সএমএল সহ:
curl -H "Accept: application/xml" -H "Content-Type: application/xml" -X GET http://hostname/resource
পোস্ট:
ডেটা পোস্ট করার জন্য:
curl --data "param1=value1¶m2=value2" http://hostname/resource
ফাইল আপলোডের জন্য:
curl --form "fileupload=@filename.txt" http://hostname/resource
বিশ্রামের এইচটিটিপি পোস্ট:
curl -X POST -d @filename http://hostname/resource
কোনও সাইটে লগ ইন করার জন্য (লেখক):
curl -d "username=admin&password=admin&submit=Login" --dump-header headers http://localhost/Login
curl -L -b headers http://localhost/
-H/--header <header>
(HTTP) Extra header to use when getting a web page. You may specify
any number of extra headers. Note that if you should add a custom
header that has the same name as one of the internal ones curl would
use, your externally set header will be used instead of the internal
one. This allows you to make even trickier stuff than curl would
normally do. You should not replace internally set headers without
knowing perfectly well what you're doing. Remove an internal header
by giving a replacement without content on the right side of the
colon, as in: -H "Host:".
curl will make sure that each header you add/replace get sent with
the proper end of line marker, you should thus not add that as a
part of the header content: do not add newlines or carriage returns
they will only mess things up for you.
See also the -A/--user-agent and -e/--referer options.
This option can be used multiple times to add/replace/remove multi-
ple headers.
curl --header "X-MyHeader: 123" www.google.com
-v
বিকল্পটি যোগ করে যে কার্ল প্রেরণ করা হয়েছিল তা আপনি দেখতে পাচ্ছেন ।
ইন পিএইচপি :
curl_setopt($ch, CURLOPT_HTTPHEADER, array('HeaderName:HeaderValue'));
অথবা আপনি একাধিক সেট করতে পারেন:
curl_setopt($ch, CURLOPT_HTTPHEADER, array('HeaderName:HeaderValue', 'HeaderName2:HeaderValue2'));
ব্যবহার -H or --header
।
ম্যান পৃষ্ঠা: http://curl.haxx.se/docs/manpage.html#-H
GET (একাধিক পরামিতি):
curl -X GET "http://localhost:3000/action?result1=gh&result2=ghk"
অথবা
curl --request GET "http://localhost:3000/action?result1=gh&result2=ghk"
অথবা
curl "http://localhost:3000/action?result1=gh&result2=ghk"
অথবা
curl -i -H "Application/json" -H "Content-type: application/json" "http://localhost:3000/action?result1=gh&result2=ghk"
আমি পোস্টম্যান ব্যবহার করি
আপনি যে কল করতে চান তা কার্যকর করুন। তারপরে, পোস্টম্যান কার্ল কোডটি দেখানোর জন্য একটি সহজ সরঞ্জাম সরবরাহ করে।
আপনি একাধিক শিরোলেখ, ডেটা (উদাহরণস্বরূপ JSON) প্রেরণ করতে পারেন এবং কল পদ্ধতি (POST, GET) কে এই জাতীয় সিআরএল কল হিসাবে নির্দিষ্ট করতে পারেন:
curl -X POST(Get or whatever) \
http://your_url.com/api/endpoint \
-H 'Content-Type: application/json' \
-H 'header-element1: header-data1' \
-H 'header-element2: header-data2' \
...... আরও শিরোনাম ................
-d '{
"JsonExArray": [
{
"json_prop": "1",
},
{
"json_prop": "2",
}
]
}'
আমি কার্ল থেকে এইচটিপিতে স্যুইচ করেছি ; সিনট্যাক্সটি দেখে মনে হচ্ছে:
http http://myurl HeaderName:value
ইন anaconda দ্বারা মাধ্যমে envirement জানালা করুন, উদা: কমান্ড হওয়া উচিত:
curl.exe http://127.0.0.1:5000/books
প্রাক্তনের জন্য ডেটা পোস্ট বা প্যাচ করুন:
curl.exe http://127.0.0.1:5000/books/8 -X PATCH -H "Content-Type: application/json" -d '{\"rating\":\"2\"}'
PS: এই ধরণের ত্রুটি এড়াতে => জোসন ডেটার জন্য ব্যাকস্ল্যাশ যুক্ত করুন Failed to decode JSON object: Expecting value: line 1 column 1 (char 0)
এবং এই সমস্যাটি এড়াতে কেবল curl.exe
পরিবর্তে ব্যবহার করুন curl
:
Invoke-WebRequest : Cannot bind parameter 'Headers'. Cannot convert the "Content-Type: application/json" value of type
"System.String" to type "System.Collections.IDictionary".
At line:1 char:48
+ ... 0.1:5000/books/8 -X PATCH -H "Content-Type: application/json" -d '{\" ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (:) [Invoke-WebRequest], ParameterBindingException
+ FullyQualifiedErrorId : CannotConvertArgumentNoMessage,Microsoft.PowerShell.Commands.InvokeWebRequestCommand