> Are you likely to be working on a version that includes TPP support for
> things like certs?
>
> I'm not sure how hard it is to implement TPP, since it looks very
> similar to XCP, but I don't want to re-invent the wheel if someone is
> kindly providing an open source version.
According to the API spec I have, this should work with an
out-of-the-box install of my class:
<?php
require_once 'openSRS.php';
$O = new openSRS('live');
$cmd = array(
'action' => 'buy',
'object' => 'webcert',
'email' => '[EMAIL PROTECTED]',
'quantity' => 1,
'phone' => '416-555-1212',
'contact' => 'Colin Viebrock',
'org' => 'easyDNS Technologies',
'needs_reseller' => 1,
}
$result = $O->send_cmd($cmd);
?>
- Colin