We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Here's a quick example on how to talk to nipapd's XML-RPC API using PHP.
<?php require_once 'XML/RPC2/Client.php'; $client = XML_RPC2_Client::create('http://guest:guest@127.0.0.1:1337/XMLRPC'); $auth = array('authoritative_source' => 'nipap'); $result = $client->echo(array( 'auth' => $auth, 'message' => "tjong") ); print $result; ?>