Git Product home page Git Product logo

Comments (14)

redealumni avatar redealumni commented on July 19, 2024

We figured out the reason for this, mechanize seems to be processing the value of the cookie and removing the surrounding quotes in it. But LinkedIn seems to have changed something (internally) that made it choke if those quotes are not there.

So, mechanize should follow the RFC([http://www.ietf.org/rfc/rfc2109.txt]) and don't do any processing in the value.

from mechanize.

flavorjones avatar flavorjones commented on July 19, 2024

If you could please submit a failing test case for this, it would be a huge help in fixing it. Based on the above description, I don't have any easy way to reproduce this issue.

from mechanize.

felipekk avatar felipekk commented on July 19, 2024

This is the cookie generated by Mechanize alone, which doesn't work:

#<Mechanize::Cookie:0x64bbb50
@comment=nil,
@comment_url=nil,
@discard=nil,
@Domain="www.linkedin.com",
@expires=nil,
@max_age=nil,
@name="JSESSIONID",
@path="/",
@PORT=nil,
@secure=false,
@value="ajax:0403970942817037868",
@Version=1>,

This is the working cookie:

#<Mechanize::Cookie:0x60f62d0
@comment=nil,
@comment_url=nil,
@discard=nil,
@Domain="www.linkedin.com",
@expires=nil,
@max_age=nil,
@name="JSESSIONID",
@path="/",
@PORT=nil,
@secure=false,
@value=""ajax:0067975378067751123"",
@Version=0>,

from mechanize.

felipekk avatar felipekk commented on July 19, 2024

Adding:

I had to manually correct (add double quotes) these three cookies to get it to work:

leo_auth_token
s_leo_auth_token
JSESSIONID

from mechanize.

0xradical avatar 0xradical commented on July 19, 2024

This is exactly what we did to make it work, it seems that mechanize is ignoring quotes when they are needed.

from mechanize.

rossf7 avatar rossf7 commented on July 19, 2024

I just sent a patch to the Mechanize Users mailing list with a test case that hopefully captures this issue.

from mechanize.

smparkes avatar smparkes commented on July 19, 2024

rossf7's tests and a fix at http://github.com/smparkes/mechanize/commit/631ce39f9d4843f62aefc6cdbb2b4576a2f5bd6b

from mechanize.

flavorjones avatar flavorjones commented on July 19, 2024

Can someone send a pull request for this? Would make my life easier ... :) Thank you for the extra effort!

from mechanize.

flavorjones avatar flavorjones commented on July 19, 2024

Ah - just saw the pull request. Never mind!

from mechanize.

flavorjones avatar flavorjones commented on July 19, 2024

Someone already merged it in. Shrug.

from mechanize.

smparkes avatar smparkes commented on July 19, 2024

Yeah, Aaron went on a tear yesterday. (Thanks Aaron.)

from mechanize.

daveed avatar daveed commented on July 19, 2024

Hi,

I can't login on linkedin using mechanize.
Here is the script I'm using:

require 'rubygems'
require 'mechanize'

agent = Mechanize.new
page = agent.get('https://www.linkedin.com/secure/login')
form = page.form('login')
form.session_key = 'my_email_login'
form.session_password = 'my_password'
form.click_button

I've tried several different ways to login, I also tried the script above but I always have the same response:

=> #<Mechanize::Page
 {url #<URI::HTTPS:0xc8105b8 URL:https://www.linkedin.com/secure/login>}
 {meta}
 {title nil}
 {iframes}
 {frames}
 {links #<Mechanize::Page::Link "click here" "http://www.linkedin.com/home">}
 {forms}>

I have been able to login on some other systems, I don't know why it doesn't work on linkedin.

from mechanize.

flavorjones avatar flavorjones commented on July 19, 2024

This issue is closed. If you're looking for support on how to use mechanize, please email the mechanize-users mailing list. Thanks!

from mechanize.

daveed avatar daveed commented on July 19, 2024

No problemo, it works now anyway :)
Cheers!

from mechanize.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.