Include all files in the src directory into your project and start using Wordpress XML-RPC Client. You have to update the code of this library manually if using it without Composer. Required PHP extension is xmlrpc extension. The curl extension is optional be recommended. All API call will be executed via an instance of the. Download XML-RPC Client for ActionScript for free. XML-RPC can save Flash and Flex developers hours of work. It enables ActionScript to transparently communicate with blogs like WordPress and Blogspot.
A PHP client for Wordpress websites that closely implement the XML-RPC WordPress API
Created by Hieu Le
MIT licensed.
Current version: 2.4.0
Features
- Full test suit built in supporting testing using your own Wordpress site.
Support error logging to files with Monolog library.Now, erros can be logged in a more felxible way via error callbacks (v 2.4.0)- Support UTF-8 content.
- Closely implement the whole XML-RPC WordPress API.
- Detail exception will be thrown when errors occurs.
- (v2.2) Support proxy and http authentication.
- (v2.2.1) Allow value of
DateTimeclass to be convert correctly todatetime.iso8601XML-RPC type, - (v2.4.0) Support using custom User Agent string beside the default User Agent string.
- (v2.4.0) Support callbacks on sending and error events
Installation
You will need Composer installed on your machine to use this libraryComposer now is not required but recommended. Verify that composer is installed by typing this command
Choose one of the following methods to install Wordpress XML-RPC PHP Client
Your project has used composer:

Add this dependency into your composer.json file
After that, run composer update to install this package.
Your project does not use composer:
Clone or download the archive of this package from github. Include all files in the src directory into your project and start using Wordpress XML-RPC Client. You have to update the code of this library manually if using it without Composer.
Free web authoring software for mac. Required PHP extension is xmlrpc extension. The curl extension is optional be recommended.
Usage
All API call will be executed via an instance of the WordpressClient class. Since version 2.4.0, there is no mandatory parameters in the contructor. endPoint, username, and password can be updated anytime by calling setCredentials method. The last parameter in previous version contructor (which is an instance of IlluminateLogWriter class) is deprecated and will be removed in the next major release. Below is an example of using this library:
If you have used logging feture of previous version of this library, you should update your code to use the new way of loggin as above, the Monolog instance can be replaced by any kinds of logging tool that you have.
To use date time value, you must use an instance of DateTime class instead of a string.
There will be 2 types of exception may be thrown from this library:
XmlrpcException: this kind of exception will be thrown if there is an error when the server executing your requestNetworkException: this kind of exception will be thrown if there is an error when transfer your request to server or when getting the response.
For API reference, visit Wordpress documentation or Library API documentation
User Agent (since 2.4.0)
The library use the default User Agent when contacting with Wordpress blogs. If you want to use onother one, pass your custom User Agent string into the setUserAgent method. If you passed a falsy value (null, false, ..) the default one will be used (thank @WarrenMoore)
Callbacks and events (since 2.4.0)
The library allow developers to listen on two events Sending and Error. You can add new closure as a callback for each events by calling on<event> method with the closure as parameter (see the onError example above).
onSending($event)
This event is fired before each request is send to Wordpress blogs. $event is an array:
event: the name of the event, here issendingendpoint: URL of the current endpointusername: current usernamepassword: current passwordmethod: current XML-RPC methodparams: parameters passed to the current methodrequest: the body of the current request which will be sentproxy: current proxy configauth: current http auth config
onError($errorMessage, $event)

This event is fired when the library run into errors, before any exception thrown. $errorMessage is a string. $event is an array:
event: the name of the event, here issendingendpoint: URL of the current endpointrequest: the body of the current requestproxy: current proxy configauth: current http auth config
Xml Rpc Client
Unit testing
By default, the project use recorded data as the default data for test suite. However, if you want to test with your own Wordpress installation, there are available options inside the ./tests/xmlrpc.yml file:
endpoint: the url of your Wordpress XML-RPC endpointadmin_login: the email or username of a user with the Administrator roleadmin_password: the password of the admin userguest_login: the email or username of a user with the Subscriber roleguest_password: the password of the guest user
After update the ./tests/xmlrpc.yml file, run your test again.
From time to time we’ve had people wonder if the XML-RPC API is turned on for their Bugzilla installation. The answer is yes in all cases. Nevertheless it is difficult to verify as Bugzilla will not give you a meaningful response if you go to https://<mybugzilla>/xmlrpc.cgi in your browser.
Xml-rpc Client Python
Other clients want to verify some off error message they are getting from a tool that integrates with Bugzilla through the XML-RPC API.
To solve these questions we have deployed our online XML-RPC client.
By default it has the URL and credentials for our Bugzilla demo, but you can point it to any Bugzilla with XML-RPC enabled (even https://bugzilla.mozilla.org/).
The tricky bit is the parameter XML.
Bugzilla XML-RPC expects a single <struct> element. The names of the parameters listed in the API docs for each function are the <name> element for the struct <member>s. See Bugzilla::WebService::Server::XMLRPC and Bugzilla::WebService for more information.
For example
This is the minimum set of parameters for Bugzilla 4.4.x as almost all methods require authentication.
To retrieve a bug you need to set the method to Bug.get and parameter XML tosomething like the following:
For more information on how to represent various data types see the XML-RPC specification.
