The Client class is the gateway to your WordPress blog’s XML-RPC interface.
Once initialized with your blog URL and user credentials, the client object is ready to execute XML-RPC methods against your WordPress blog using its Client.call() method.
| Parameters: |
|
|---|
| Parameters: | method – wordpress_xmlrpc.XmlrpcMethod-derived class |
|---|
Library to interface with the WordPress XML-RPC API.
See README for usage instructions.
Base class for XML-RPC methods.
Child classes can override methods and properties to customize behavior:
Builds set of method-non-specific arguments.
Builds final set of XML-RPC method arguments based on the method’s arguments, any default arguments, and their defined respective ordering.
Performs actions on the raw result from the XML-RPC response.
If a results_class is defined, the response will be converted into one or more object instances of that class.
An XML-RPC method for which no authentication is required.
An XML-RPC method for which user authentication is required.
Blog ID, username and password details will be passed from the Client instance to the method call.