Tagged Questions
The cookiejar tag has no wiki summary.
5
votes
2answers
1k views
How to pickle a CookieJar?
I have an object with a CookieJar that I want to pickle.
However as you all probably know, pickle chokes on objects that contain lock objects. And for some horrible reason, a CookieJar has a lock ...
4
votes
4answers
1k views
httplib2, how to set more than one cookie?
As you are probably aware, more often than not, an HTTP server will send more than just a session_id cookie; however, httplib2 handles cookies with a dictionary, like this:
response, content = ...
2
votes
1answer
366 views
PHP & cURL proxy - how to make multi-user cookie jar?
I'm developing an application that does a remote login, amongst other things, via cURL.
The remote site gives out a session cookie, which I can store in my cookie jar.
I want each user to my site to ...
2
votes
3answers
470 views
302s and losing cookies with urllib2
I am using liburl2 with CookieJar / HTTPCookieProcessor in an attempt to simulate a login to a page to automate an upload.
I've seen some questions and answers on this, but nothing which solves my ...
2
votes
1answer
3k views
C# (Sharp) The Difference between HttpCookie and Cookie?
So I'm confused as msdn and other tutorials tell me to use HttpCookies to add cookies via Response.Cookies.Add(cookie). But that's the problem. Response.Cookies.Add only accepts Cookies and not ...
2
votes
2answers
890 views
Fake a cookie to scrape a site in python
The site that I'm trying to scrape uses js to create a cookie. What I was thinking was that I can create a cookie in python and then use that cookie to scrape the site. However, I don't know any way ...
1
vote
2answers
44 views
Cookiejar use in an opener
I have the following code at the moment:
tw_jar = cookielib.CookieJar()
tw_jar.set_cookie(c1)
tw_jar.set_cookie(c2)
o = urllib2.build_opener( urllib2.HTTPCookieProcessor(tw_jar) )
...
1
vote
0answers
49 views
Get cookie from CookieJar by name
I know that I can iterate through the cookies in a cookiejar, and this would allow me to find a cookie with a particular name - but does the CookieJar object itself have any methods I can call to get ...
1
vote
3answers
216 views
Python CookieJar - Cookies Set By Google Analytics
I'm a little bit confused about this situation. I'm working on a script to login into a website. I'm using CookieJar and the login method is working just fine.
If I try to display the cookieJar ...
1
vote
1answer
3k views
How to add cookie to existing cookielib CookieJar instance in Python?
I have a CookieJar that's being used with mechanize that I want to add a cookie to. How can I go about doing this? make_cookie() and set_cookie() weren't clear enough for me.
br = mechanize.Browser()
...
1
vote
4answers
416 views
Retrieve cookie created using javascript in python
I've had a look at many tutorials regarding cookiejar, but my problem is that the webpage that i want to scape creates the cookie using javascript and I can't seem to retrieve the cookie. Does anybody ...
0
votes
0answers
15 views
Empty cookiejar using SUDS
I'm running SUDS 0.4 on Linux Slackware 13.0 with python 2.6.2. When I call SOAP method using this code:
from suds.client import Client
client = Client(url='file:acctWeb.wsdl',
...
0
votes
1answer
63 views
Python CookieJar saves cookie, but doesn't send it to website
I am trying to login to website using urllib2 and cookiejar. It saves the session id, but when I try to open another link, which requires authentication it says that I am not logged in. What am I ...
0
votes
0answers
33 views
cookies returns Empty ActionDispatch::Cookies::CookieJar using rails
I am new to Ruby on Rails and developing on a windows machine.
My problem is that when I try to use the cookies object every time I call it I get an empty ActionDispatch::Cookies::CookieJar object.
...
0
votes
0answers
118 views
check whether a session cookie is still alive (Python)
Please take a look at the following python code snippet :
import cookielib, urllib, urllib2
def login(username, password):
cookie_jar = cookielib.LWPCookieJar()
opener = ...
0
votes
1answer
753 views
PHP CURLOPT_COOKIEFILE/CURLOPT_COOKIEJAR do not seem to be working on remote server
I have a rather interesting issue with passing cookies using curl. I have a script that logs into my company's queuing system, then grabs the cookies from the successful login. Later, the script will ...
0
votes
1answer
1k views
Using CookieJar in Python to log in to a website from “Google App Engine”. What's wrong here?
I've been trying to find a python code that would log in to my mail box on yahoo.com from "Google App Engine"
.
Here (click here to see that page) I was given this code:
import urllib, urllib2, ...
-1
votes
0answers
47 views
Alternative for CookieJar in Metro webservice stack 2.1.1
We were using CookieJar APIs with Metro webservice stack 1.5.
We recently switched over to Metro 2.1.1 and it doesn't support CookieJar.
What is the alternative approach for this in Metro 2.1.1 for ...