in reply to Mediawiki::API with Basic Authentication

possibly here

'myuser' => 'mypassword'

Try to change the "=>" sign by ","

$self->{'agent'}->credentials( 'myserver:80', 'mydomain', 'myuser', 'mypassword' );

Replies are listed 'Best First'.
Re^2: Mediawiki::API with Basic Authentication
by anneli (Pilgrim) on Oct 08, 2011 at 00:05 UTC

    Shouldn't these be equivalent?

    $ ('a', 'b', 'c', 'd'); $VAR1 = 'a'; $VAR2 = 'b'; $VAR3 = 'c'; $VAR4 = 'd'; $ ('a', 'b', 'c' => 'd'); + + + $VAR1 = 'a'; $VAR2 = 'b'; $VAR3 = 'c'; $VAR4 = 'd'; $

      Unnecessarily ambiguous to me, and probably force a hash in credentials that could be different that the program expects. Are we sure that "user" is the key for "password"? ( or maybe the "fourth element in the list credentials" is the key for password? and "user" is the value for "the third element in the list credentials", or maybe the third element in the list has "password" as username? )

      I'm not saying that this is how the module works internally, I don't know, but taking a look to the source in order to discard or confirm this could help. After the question it seems to me that credentials are not parsing accurately for any reason, so OP probably want to change this fat comma and try again.

        Unnecessarily ambiguous to me, and probably force a hash in credentials that could be different that the program expects.

        You're an idiot