Get Fault 403 response when calling a method
xmlrpclib.Fault: <Fault 403: 'Access to this site through the API is forbidden (configure in "Manage Site > API")'>
I checked my site, my keys, my user and Api access. All ok.
I am able to create the ServerProxy object:
>>> from xmlrpclib import ServerProxy
>>> s = ServerProxy('https://Mysite:secretkey@www.wikidot.com/xml-rpc-api.php')
>>> s.system.listMethods()
['system.listMethods', 'system.methodHelp', 'system.methodSignature', 'system.multicall', 'categories.select', 'tags.select', 'pages.select', 'pages.get_meta', 'pages.get_one', 'pages.save_one', 'files.select', 'files.get_meta', 'files.get_one', 'files.save_one', 'users.get_me', 'posts.select', 'posts.get']
Anybody?
Thnx!