curl and python cookies are different
I have a set of curl commands that I'm trying to convert into python requests but I'm getting stuck on the cookies. In curl the instructions say to make a cookies file by
curl 'https://signon.jgi.doe.gov/signon/create' --data-urlencode 'login=USER_NAME' --data-urlencode 'password=USER_PASSWORD' -c cookies > /dev/null
Which gives me the following file
# Netscape HTTP Cookie File
# https://curl.haxx.se/docs/http-cookies.html
# This file was generated by libcurl! Edit at your own risk.
.jgi.doe.gov TRUE / FALSE 0 jgi_session <REDACTED>
#HttpOnly_signon-old.jgi.doe.gov FALSE / FALSE 0 _caliban_session <REDACTED>
When I try the same thing in requests:
import requests
get_cookie = requests.post('https://signon.jgi.doe.gov/signon/create', data='login':<USERNAME>, 'password': <PASSWORD>)
get_cookie.cookies
<RequestsCookieJar[Cookie(version=0, name='_caliban_session', value='<REDACTED>', port=None, port_specified=False, domain='signon.jgi.doe.gov', domain_specified=False, domain_initial_dot=False, path='/', path_specified=True, secure=False, expires=None, discard=True, comment=None, comment_url=None, rest='HttpOnly': None, rfc2109=False)]>
The cookie that gets returned is the _caliban_session
, which is commented out in the curl cookie file. The correct cookie, with the jgi_session
in it doesn't appear to be returned. As a result my subsequent requests using the cookie are denied.
Why is it that the cookies are different between python and curl? and how can I get the python requests to match the curl cookie?
python curl cookies python-requests
add a comment |
I have a set of curl commands that I'm trying to convert into python requests but I'm getting stuck on the cookies. In curl the instructions say to make a cookies file by
curl 'https://signon.jgi.doe.gov/signon/create' --data-urlencode 'login=USER_NAME' --data-urlencode 'password=USER_PASSWORD' -c cookies > /dev/null
Which gives me the following file
# Netscape HTTP Cookie File
# https://curl.haxx.se/docs/http-cookies.html
# This file was generated by libcurl! Edit at your own risk.
.jgi.doe.gov TRUE / FALSE 0 jgi_session <REDACTED>
#HttpOnly_signon-old.jgi.doe.gov FALSE / FALSE 0 _caliban_session <REDACTED>
When I try the same thing in requests:
import requests
get_cookie = requests.post('https://signon.jgi.doe.gov/signon/create', data='login':<USERNAME>, 'password': <PASSWORD>)
get_cookie.cookies
<RequestsCookieJar[Cookie(version=0, name='_caliban_session', value='<REDACTED>', port=None, port_specified=False, domain='signon.jgi.doe.gov', domain_specified=False, domain_initial_dot=False, path='/', path_specified=True, secure=False, expires=None, discard=True, comment=None, comment_url=None, rest='HttpOnly': None, rfc2109=False)]>
The cookie that gets returned is the _caliban_session
, which is commented out in the curl cookie file. The correct cookie, with the jgi_session
in it doesn't appear to be returned. As a result my subsequent requests using the cookie are denied.
Why is it that the cookies are different between python and curl? and how can I get the python requests to match the curl cookie?
python curl cookies python-requests
I think the reason why you did not getjgi_session
because you logged in unsuccessfully.
– kcorlidy
Nov 16 '18 at 12:00
add --trace-ascii req.txt to watch your request, i got'login=USER_NAME%27&'password=USER_PASSWORD%27
with curl. andlogin=USER_NAME&password=USER_PASSWORD
with Python
– kcorlidy
Nov 16 '18 at 12:34
thanks for the tip. How I can see a similar output though python as the --trace-ascii for curl?
– cts
Nov 16 '18 at 18:50
add a comment |
I have a set of curl commands that I'm trying to convert into python requests but I'm getting stuck on the cookies. In curl the instructions say to make a cookies file by
curl 'https://signon.jgi.doe.gov/signon/create' --data-urlencode 'login=USER_NAME' --data-urlencode 'password=USER_PASSWORD' -c cookies > /dev/null
Which gives me the following file
# Netscape HTTP Cookie File
# https://curl.haxx.se/docs/http-cookies.html
# This file was generated by libcurl! Edit at your own risk.
.jgi.doe.gov TRUE / FALSE 0 jgi_session <REDACTED>
#HttpOnly_signon-old.jgi.doe.gov FALSE / FALSE 0 _caliban_session <REDACTED>
When I try the same thing in requests:
import requests
get_cookie = requests.post('https://signon.jgi.doe.gov/signon/create', data='login':<USERNAME>, 'password': <PASSWORD>)
get_cookie.cookies
<RequestsCookieJar[Cookie(version=0, name='_caliban_session', value='<REDACTED>', port=None, port_specified=False, domain='signon.jgi.doe.gov', domain_specified=False, domain_initial_dot=False, path='/', path_specified=True, secure=False, expires=None, discard=True, comment=None, comment_url=None, rest='HttpOnly': None, rfc2109=False)]>
The cookie that gets returned is the _caliban_session
, which is commented out in the curl cookie file. The correct cookie, with the jgi_session
in it doesn't appear to be returned. As a result my subsequent requests using the cookie are denied.
Why is it that the cookies are different between python and curl? and how can I get the python requests to match the curl cookie?
python curl cookies python-requests
I have a set of curl commands that I'm trying to convert into python requests but I'm getting stuck on the cookies. In curl the instructions say to make a cookies file by
curl 'https://signon.jgi.doe.gov/signon/create' --data-urlencode 'login=USER_NAME' --data-urlencode 'password=USER_PASSWORD' -c cookies > /dev/null
Which gives me the following file
# Netscape HTTP Cookie File
# https://curl.haxx.se/docs/http-cookies.html
# This file was generated by libcurl! Edit at your own risk.
.jgi.doe.gov TRUE / FALSE 0 jgi_session <REDACTED>
#HttpOnly_signon-old.jgi.doe.gov FALSE / FALSE 0 _caliban_session <REDACTED>
When I try the same thing in requests:
import requests
get_cookie = requests.post('https://signon.jgi.doe.gov/signon/create', data='login':<USERNAME>, 'password': <PASSWORD>)
get_cookie.cookies
<RequestsCookieJar[Cookie(version=0, name='_caliban_session', value='<REDACTED>', port=None, port_specified=False, domain='signon.jgi.doe.gov', domain_specified=False, domain_initial_dot=False, path='/', path_specified=True, secure=False, expires=None, discard=True, comment=None, comment_url=None, rest='HttpOnly': None, rfc2109=False)]>
The cookie that gets returned is the _caliban_session
, which is commented out in the curl cookie file. The correct cookie, with the jgi_session
in it doesn't appear to be returned. As a result my subsequent requests using the cookie are denied.
Why is it that the cookies are different between python and curl? and how can I get the python requests to match the curl cookie?
python curl cookies python-requests
python curl cookies python-requests
asked Nov 15 '18 at 23:59
ctscts
614618
614618
I think the reason why you did not getjgi_session
because you logged in unsuccessfully.
– kcorlidy
Nov 16 '18 at 12:00
add --trace-ascii req.txt to watch your request, i got'login=USER_NAME%27&'password=USER_PASSWORD%27
with curl. andlogin=USER_NAME&password=USER_PASSWORD
with Python
– kcorlidy
Nov 16 '18 at 12:34
thanks for the tip. How I can see a similar output though python as the --trace-ascii for curl?
– cts
Nov 16 '18 at 18:50
add a comment |
I think the reason why you did not getjgi_session
because you logged in unsuccessfully.
– kcorlidy
Nov 16 '18 at 12:00
add --trace-ascii req.txt to watch your request, i got'login=USER_NAME%27&'password=USER_PASSWORD%27
with curl. andlogin=USER_NAME&password=USER_PASSWORD
with Python
– kcorlidy
Nov 16 '18 at 12:34
thanks for the tip. How I can see a similar output though python as the --trace-ascii for curl?
– cts
Nov 16 '18 at 18:50
I think the reason why you did not get
jgi_session
because you logged in unsuccessfully.– kcorlidy
Nov 16 '18 at 12:00
I think the reason why you did not get
jgi_session
because you logged in unsuccessfully.– kcorlidy
Nov 16 '18 at 12:00
add --trace-ascii req.txt to watch your request, i got
'login=USER_NAME%27&'password=USER_PASSWORD%27
with curl. and login=USER_NAME&password=USER_PASSWORD
with Python– kcorlidy
Nov 16 '18 at 12:34
add --trace-ascii req.txt to watch your request, i got
'login=USER_NAME%27&'password=USER_PASSWORD%27
with curl. and login=USER_NAME&password=USER_PASSWORD
with Python– kcorlidy
Nov 16 '18 at 12:34
thanks for the tip. How I can see a similar output though python as the --trace-ascii for curl?
– cts
Nov 16 '18 at 18:50
thanks for the tip. How I can see a similar output though python as the --trace-ascii for curl?
– cts
Nov 16 '18 at 18:50
add a comment |
0
active
oldest
votes
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%2f53329536%2fcurl-and-python-cookies-are-different%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f53329536%2fcurl-and-python-cookies-are-different%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
I think the reason why you did not get
jgi_session
because you logged in unsuccessfully.– kcorlidy
Nov 16 '18 at 12:00
add --trace-ascii req.txt to watch your request, i got
'login=USER_NAME%27&'password=USER_PASSWORD%27
with curl. andlogin=USER_NAME&password=USER_PASSWORD
with Python– kcorlidy
Nov 16 '18 at 12:34
thanks for the tip. How I can see a similar output though python as the --trace-ascii for curl?
– cts
Nov 16 '18 at 18:50