I'm trying to use metaweblog's api to programmatically post data to blogapi.module. When i try calling the function blogger.getUserInfo('1','username','password') i am getting and XMLRPC fault returned. When i look at the api and then at the code i see some discrepancies . I'm using version 1.82 in drupal 4.7.3. Is this api functional? The blogid hack, does it still apply? are there any examples for developers anywhere? Can i get an example from someone as to what i should be posting?

for example the drupal function:

function blogapi_blogger_get_users_blogs($appid, $username, $password)
works with 3 arguments yet its registration in hook_xmlrpc looks like this :

array(
'blogger.getUsersBlogs',
'blogapi_blogger_get_users_blogs',
array('array', 'string', 'string', 'string'),
t('Returns a list of weblogs to which an author has posting privileges.')),

What happened to the inital array? What value was it ? To complicate things the Blogger api: http://www.blogger.com/developers/api/1_docs/xmlrpc_getUsersBlogs.html

specifies the 3 string method call.

People seem to say this works with 4.7.. I just dont see it?

Please, any information?