You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I use key auth, then I get
Fault: <Fault 406: 'Missing required arguments: username, password'>
Without keys, only sessions auth, then I get
return getattr(self, method_name)(self._build_eval_list(method_name, args))
TypeError: _build_eval_list() takes exactly 2 arguments (3 given)
Would really like to use this lib, but I can't get it to work, still new to python, so it might be me.
I ran into a diffent problem, using some other code on the net, and needed to change the following on Windows ...
#nonce = "".join(random.sample(string.letters+string.digits, 10))
nonce = "".join(random.sample(string.ascii_letters+string.digits, 10))
I tried using your Drupal services but I got:
xmlrpclib.Fault: <Fault 406: 'Missing required arguments: username, password'>
This is a fresh Drupal 6 install.
Thanks
The text was updated successfully, but these errors were encountered: