curl command in Unix giving exception
up vote
-1
down vote
favorite
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 |
up vote
-1
down vote
favorite
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
2 days ago
add a comment |
up vote
-1
down vote
favorite
up vote
-1
down vote
favorite
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 2 days ago
Biffen
4,16652129
4,16652129
asked 2 days ago
kashi
316
316
Did… did you just make up those options?! And what’s that@{…}
syntax? Something’s really strange here.
– Biffen
2 days ago
add a comment |
Did… did you just make up those options?! And what’s that@{…}
syntax? Something’s really strange here.
– Biffen
2 days ago
Did… did you just make up those options?! And what’s that
@{…}
syntax? Something’s really strange here.– Biffen
2 days ago
Did… did you just make up those options?! And what’s that
@{…}
syntax? Something’s really strange here.– Biffen
2 days ago
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
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
2 days ago
Edited a typo. Try again.
– Ricardo Branco
2 days ago
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
2 days ago
Which host are you using? Do not usesomeaddress
as in the example.
– Ricardo Branco
2 days ago
no that is dummy one .. i am using the correct one.
– kashi
2 days ago
|
show 5 more comments
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
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
2 days ago
Edited a typo. Try again.
– Ricardo Branco
2 days ago
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
2 days ago
Which host are you using? Do not usesomeaddress
as in the example.
– Ricardo Branco
2 days ago
no that is dummy one .. i am using the correct one.
– kashi
2 days ago
|
show 5 more comments
up vote
1
down vote
accepted
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
2 days ago
Edited a typo. Try again.
– Ricardo Branco
2 days ago
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
2 days ago
Which host are you using? Do not usesomeaddress
as in the example.
– Ricardo Branco
2 days ago
no that is dummy one .. i am using the correct one.
– kashi
2 days ago
|
show 5 more comments
up vote
1
down vote
accepted
up vote
1
down vote
accepted
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 2 days ago
answered 2 days ago
Ricardo Branco
3,1641513
3,1641513
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
2 days ago
Edited a typo. Try again.
– Ricardo Branco
2 days ago
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
2 days ago
Which host are you using? Do not usesomeaddress
as in the example.
– Ricardo Branco
2 days ago
no that is dummy one .. i am using the correct one.
– kashi
2 days ago
|
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
2 days ago
Edited a typo. Try again.
– Ricardo Branco
2 days ago
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
2 days ago
Which host are you using? Do not usesomeaddress
as in the example.
– Ricardo Branco
2 days ago
no that is dummy one .. i am using the correct one.
– kashi
2 days ago
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
2 days ago
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
2 days ago
Edited a typo. Try again.
– Ricardo Branco
2 days ago
Edited a typo. Try again.
– Ricardo Branco
2 days ago
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
2 days ago
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
2 days ago
Which host are you using? Do not use
someaddress
as in the example.– Ricardo Branco
2 days ago
Which host are you using? Do not use
someaddress
as in the example.– Ricardo Branco
2 days ago
no that is dummy one .. i am using the correct one.
– kashi
2 days ago
no that is dummy one .. i am using the correct one.
– kashi
2 days ago
|
show 5 more comments
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
2 days ago