curl command in Unix giving exception
I am executing the below curl command and getting the error:
curl -Method Post -Header @{'Content-Type'='application/x-www-form-urlencoded'}-Body @{grant_type = 'password';username = 'abcd';password = 'xyz'} "http://someaddress/api/oauth/token" -O test_curl
Could you please check what wrong I am doing here?
Error:
Warning: built-in manual was disabled at build-time!
curl: option -Method: is unknown
curl: try 'curl --help' for more information
curl
add a comment |
I am executing the below curl command and getting the error:
curl -Method Post -Header @{'Content-Type'='application/x-www-form-urlencoded'}-Body @{grant_type = 'password';username = 'abcd';password = 'xyz'} "http://someaddress/api/oauth/token" -O test_curl
Could you please check what wrong I am doing here?
Error:
Warning: built-in manual was disabled at build-time!
curl: option -Method: is unknown
curl: try 'curl --help' for more information
curl
Did… did you just make up those options?! And what’s that@{…}
syntax? Something’s really strange here.
– Biffen
Nov 21 '18 at 11:04
add a comment |
I am executing the below curl command and getting the error:
curl -Method Post -Header @{'Content-Type'='application/x-www-form-urlencoded'}-Body @{grant_type = 'password';username = 'abcd';password = 'xyz'} "http://someaddress/api/oauth/token" -O test_curl
Could you please check what wrong I am doing here?
Error:
Warning: built-in manual was disabled at build-time!
curl: option -Method: is unknown
curl: try 'curl --help' for more information
curl
I am executing the below curl command and getting the error:
curl -Method Post -Header @{'Content-Type'='application/x-www-form-urlencoded'}-Body @{grant_type = 'password';username = 'abcd';password = 'xyz'} "http://someaddress/api/oauth/token" -O test_curl
Could you please check what wrong I am doing here?
Error:
Warning: built-in manual was disabled at build-time!
curl: option -Method: is unknown
curl: try 'curl --help' for more information
curl
curl
edited Nov 21 '18 at 10:57
Biffen
4,27452230
4,27452230
asked Nov 21 '18 at 10:37
kashikashi
317
317
Did… did you just make up those options?! And what’s that@{…}
syntax? Something’s really strange here.
– Biffen
Nov 21 '18 at 11:04
add a comment |
Did… did you just make up those options?! And what’s that@{…}
syntax? Something’s really strange here.
– Biffen
Nov 21 '18 at 11:04
Did… did you just make up those options?! And what’s that
@{…}
syntax? Something’s really strange here.– Biffen
Nov 21 '18 at 11:04
Did… did you just make up those options?! And what’s that
@{…}
syntax? Something’s really strange here.– Biffen
Nov 21 '18 at 11:04
add a comment |
1 Answer
1
active
oldest
votes
The -Method
option should be -X
or --request
. The -Header
option should be -H
or --header
. Also, you must use double quotes to pass the JSON header with single quotes to curl
.
Try this:
curl -XPOST -H "@{'Content-Type'='application/x-www-form-urlencoded'}-Body @{grant_type = 'password';username = 'abcd';password = 'xyz'}" -o test_curl "http://someaddress/api/oauth/token"
i never used curl so dont know if there is a separate curl console to run the command. I tried this command and getting the error. curl: (7) couldn't connect to host curl: (6) Couldn't resolve host 'test_curl'
– kashi
Nov 21 '18 at 11:10
Edited a typo. Try again.
– Ricardo Branco
Nov 21 '18 at 11:12
now getting only one error : curl: (7) couldn't connect to host. i am running it from /home/username and test_curl is created in this path .
– kashi
Nov 21 '18 at 11:19
Which host are you using? Do not usesomeaddress
as in the example.
– Ricardo Branco
Nov 21 '18 at 11:23
no that is dummy one .. i am using the correct one.
– kashi
Nov 21 '18 at 11:27
|
show 5 more comments
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53410233%2fcurl-command-in-unix-giving-exception%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The -Method
option should be -X
or --request
. The -Header
option should be -H
or --header
. Also, you must use double quotes to pass the JSON header with single quotes to curl
.
Try this:
curl -XPOST -H "@{'Content-Type'='application/x-www-form-urlencoded'}-Body @{grant_type = 'password';username = 'abcd';password = 'xyz'}" -o test_curl "http://someaddress/api/oauth/token"
i never used curl so dont know if there is a separate curl console to run the command. I tried this command and getting the error. curl: (7) couldn't connect to host curl: (6) Couldn't resolve host 'test_curl'
– kashi
Nov 21 '18 at 11:10
Edited a typo. Try again.
– Ricardo Branco
Nov 21 '18 at 11:12
now getting only one error : curl: (7) couldn't connect to host. i am running it from /home/username and test_curl is created in this path .
– kashi
Nov 21 '18 at 11:19
Which host are you using? Do not usesomeaddress
as in the example.
– Ricardo Branco
Nov 21 '18 at 11:23
no that is dummy one .. i am using the correct one.
– kashi
Nov 21 '18 at 11:27
|
show 5 more comments
The -Method
option should be -X
or --request
. The -Header
option should be -H
or --header
. Also, you must use double quotes to pass the JSON header with single quotes to curl
.
Try this:
curl -XPOST -H "@{'Content-Type'='application/x-www-form-urlencoded'}-Body @{grant_type = 'password';username = 'abcd';password = 'xyz'}" -o test_curl "http://someaddress/api/oauth/token"
i never used curl so dont know if there is a separate curl console to run the command. I tried this command and getting the error. curl: (7) couldn't connect to host curl: (6) Couldn't resolve host 'test_curl'
– kashi
Nov 21 '18 at 11:10
Edited a typo. Try again.
– Ricardo Branco
Nov 21 '18 at 11:12
now getting only one error : curl: (7) couldn't connect to host. i am running it from /home/username and test_curl is created in this path .
– kashi
Nov 21 '18 at 11:19
Which host are you using? Do not usesomeaddress
as in the example.
– Ricardo Branco
Nov 21 '18 at 11:23
no that is dummy one .. i am using the correct one.
– kashi
Nov 21 '18 at 11:27
|
show 5 more comments
The -Method
option should be -X
or --request
. The -Header
option should be -H
or --header
. Also, you must use double quotes to pass the JSON header with single quotes to curl
.
Try this:
curl -XPOST -H "@{'Content-Type'='application/x-www-form-urlencoded'}-Body @{grant_type = 'password';username = 'abcd';password = 'xyz'}" -o test_curl "http://someaddress/api/oauth/token"
The -Method
option should be -X
or --request
. The -Header
option should be -H
or --header
. Also, you must use double quotes to pass the JSON header with single quotes to curl
.
Try this:
curl -XPOST -H "@{'Content-Type'='application/x-www-form-urlencoded'}-Body @{grant_type = 'password';username = 'abcd';password = 'xyz'}" -o test_curl "http://someaddress/api/oauth/token"
edited Nov 21 '18 at 11:12
answered Nov 21 '18 at 10:54
Ricardo BrancoRicardo Branco
3,3701716
3,3701716
i never used curl so dont know if there is a separate curl console to run the command. I tried this command and getting the error. curl: (7) couldn't connect to host curl: (6) Couldn't resolve host 'test_curl'
– kashi
Nov 21 '18 at 11:10
Edited a typo. Try again.
– Ricardo Branco
Nov 21 '18 at 11:12
now getting only one error : curl: (7) couldn't connect to host. i am running it from /home/username and test_curl is created in this path .
– kashi
Nov 21 '18 at 11:19
Which host are you using? Do not usesomeaddress
as in the example.
– Ricardo Branco
Nov 21 '18 at 11:23
no that is dummy one .. i am using the correct one.
– kashi
Nov 21 '18 at 11:27
|
show 5 more comments
i never used curl so dont know if there is a separate curl console to run the command. I tried this command and getting the error. curl: (7) couldn't connect to host curl: (6) Couldn't resolve host 'test_curl'
– kashi
Nov 21 '18 at 11:10
Edited a typo. Try again.
– Ricardo Branco
Nov 21 '18 at 11:12
now getting only one error : curl: (7) couldn't connect to host. i am running it from /home/username and test_curl is created in this path .
– kashi
Nov 21 '18 at 11:19
Which host are you using? Do not usesomeaddress
as in the example.
– Ricardo Branco
Nov 21 '18 at 11:23
no that is dummy one .. i am using the correct one.
– kashi
Nov 21 '18 at 11:27
i never used curl so dont know if there is a separate curl console to run the command. I tried this command and getting the error. curl: (7) couldn't connect to host curl: (6) Couldn't resolve host 'test_curl'
– kashi
Nov 21 '18 at 11:10
i never used curl so dont know if there is a separate curl console to run the command. I tried this command and getting the error. curl: (7) couldn't connect to host curl: (6) Couldn't resolve host 'test_curl'
– kashi
Nov 21 '18 at 11:10
Edited a typo. Try again.
– Ricardo Branco
Nov 21 '18 at 11:12
Edited a typo. Try again.
– Ricardo Branco
Nov 21 '18 at 11:12
now getting only one error : curl: (7) couldn't connect to host. i am running it from /home/username and test_curl is created in this path .
– kashi
Nov 21 '18 at 11:19
now getting only one error : curl: (7) couldn't connect to host. i am running it from /home/username and test_curl is created in this path .
– kashi
Nov 21 '18 at 11:19
Which host are you using? Do not use
someaddress
as in the example.– Ricardo Branco
Nov 21 '18 at 11:23
Which host are you using? Do not use
someaddress
as in the example.– Ricardo Branco
Nov 21 '18 at 11:23
no that is dummy one .. i am using the correct one.
– kashi
Nov 21 '18 at 11:27
no that is dummy one .. i am using the correct one.
– kashi
Nov 21 '18 at 11:27
|
show 5 more comments
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53410233%2fcurl-command-in-unix-giving-exception%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Did… did you just make up those options?! And what’s that
@{…}
syntax? Something’s really strange here.– Biffen
Nov 21 '18 at 11:04