Hi, this is more a question than a bug.

I was dinking around with og.xmlrpc stuff and it doesn't look like it can work as it is in cases where user authentication is required.

For example, in the code it calls user_authentication with raw values, i.e.

$account = user_authentication('joe', 'joespassword');

but user_authentication() requires an associative array, e.g.

$account = user_authentication( array('name' => 'joe', 'pass' => 'joespassword'));

Am I missing something about how its supposed to work (I'm new to xmlrpc under Drupal), or has it just not been updated from 5 or something like that.

Comments

Justin_KleinKeane’s picture

I'm having the same issue. It looks like the code for XMLRPC was just carried forward from the 5.x version without regard to the change in the user_authentication() api. It looks like it will work in 7 without change, so this is a 6.x specific issue.

jaarong’s picture

I'm interested in getting XML-RPC or Organic Groups to work also.