මගේ Apache සේවාදායකයට ලිනක්ස් පෙට්ටියක ශීර්ෂයක් යැවීමට මම කැමැත්තෙමි. කරල් ඇමතුමකින් මෙය සාක්ෂාත් කරගන්නේ කෙසේද?
මගේ Apache සේවාදායකයට ලිනක්ස් පෙට්ටියක ශීර්ෂයක් යැවීමට මම කැමැත්තෙමි. කරල් ඇමතුමකින් මෙය සාක්ෂාත් කරගන්නේ කෙසේද?
Answers:
ලබා ගන්න:
JSON සමඟ:
curl -i -H "Accept: application/json" -H "Content-Type: application/json" http://hostname/resource
XML සමඟ:
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
RESTful HTTP තනතුර:
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/
Accept
යනු සේවාදායකයා සඳහා ය (ඉල්ලීම / ඉල්ලීම), මෙය ලබා ගැනීමට කැමති, නමුත් ශීර්ෂකය Content-Type
යනු සේවාදායකයින් පමණක් ඊට වඩා පිළිතුරු නොදෙන අතර එය සේවාදායකයාගේ පැතුම වැරදියට නොවේ: “මම මේ ආකාරයේ අන්තර්ගතයන් අවශ්යයි ” . හරිද? එබැවින් GET curl -i -H "Accept: application/json" http://hostname/resource
සඳහා එය විය යුතුය. මම වැරදිද? ශුද්ධාසනයේ developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Type «දී ප්රතිචාර, එය Content-Type
ශීර්ෂ පැමිණි අන්තර්ගතයට අන්තර්ගතය වර්ගය ඇත්තටම දේ සේවාදායකයාගේ කියයි.»
-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
විකල්පය එකතු කිරීමෙන් යවන ලද ඉල්ලීම ඔබට දැක ගත හැකිය.
දී , PHP :
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
ලබා ගන්න (බහු පරාමිතීන්):
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"
මම තැපැල්කරු භාවිතා කරමි.
ඔබට කිරීමට අවශ්ය ඕනෑම ඇමතුමක් ක්රියාත්මක කරන්න. පසුව, තැපැල්කරු විසින් curl කේතය පෙන්වීමට පහසු මෙවලමක් සපයයි.
ඔබට බහුවිධ ශීර්ෂයන්, දත්ත (උදාහරණයක් ලෙස JSON) යැවිය හැකි අතර, මේ ආකාරයට තනි CUrl ඇමතුමකට ඇමතුම් ක්රමය (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",
}
]
}'
මම curl සිට Httpie වෙත මාරු වී ඇත ; වාක්ය ඛණ්ඩය පෙනෙන්නේ:
http http://myurl HeaderName:value
දී ඇනකොන්ඩා හරහා 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: මෙම ආකාරයේ දෝෂයන් වළක්වා ගැනීම සඳහා json දත්ත සඳහා බැක්ස්ලෑෂ් එක් කරන්න => 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