roelvanduijnhoven/openprovider-php

This package is abandoned and no longer maintained. The author suggests using the jouwweb/openprovider-php package instead.
There is no license information available for the latest version (0.9) of this package.

PHP interface to OpenProvider API

0.9 2021-01-29 10:09 UTC

This package is auto-updated.

Last update: 2021-01-29 10:10:38 UTC


README

Please don't use this. This is a copy of the sample code shown here. But quality is very low.

The files as found in this package are almost identical to the ones as distributed by OpenProvider. So why bother creating a package for it? The distribution of OpenProvider consists of a single file and does not make use of Composer and it's autoload features.

Example

include 'vendor/autoload.php';

$api = new OP_API ('https://api.openprovider.eu');

$request = new OP_Request;
$request
    ->setCommand('checkDomainRequest')
    ->setAuth(array('username' => '[username]', 'password' => '[password]'))
    ->setArgs(array(
        'domains' => array(
            array(
                'name' => 'openprovider',
                'extension' => 'nl'
            ),
            array(
                'name' => 'jouwweb',
                'extension' => 'nl'
            )
        )
    ));

$reply = $api->setDebug(1)->process($request);
echo "Code: " . $reply->getFaultCode() . "\n";
echo "Error: " . $reply->getFaultString() . "\n";
echo "Value: " . print_r($reply->getValue(), true) . "\n";
echo "\n---------------------------------------\n";

echo "Finished example script\n\n";