I also notice that QHttp doesn't really have a good way to do cookies like curl does.
It seems like In order to keep my session, I would need to extract the cookie after each request, and then add it to the next one in a semi-manual fashion.
When I use curl, I just can issue a command which creates a "cookiejar" in memory when i first start it up and handles preserving the cookies itself.
So I guess I kindof have to decide what I want to do:
1) use CURL and figure out this static member variable stuff to get the data I want out (since I already have curl logging in, doing cookies for the session, etc perfectly already)
or..
2) rewrite code in QHTTP which would feel cleaner but would have to worry about a few more things like the cookies myself.
Bookmarks