Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Trying to find real examples of a PHP class to access a distributed API. The API of course has tons of Methods and I don't feel like writing a class method for each because it goes against DRY.

Whenever I search for PHP API client it gives way too much information on building the API itself and little in the way of real access methods beyond the curl examples. A PHP class that includes a good curl method and a way to handle the requests would be nice. I learn by example and lots of re-arranging.

I started with a construct to catch the usual connection settings:

    private $hosts = array( URI_1,  URI_2,  URI_3);
private $users = array( USER_1, USER_2, USER_3);
private $pass =  array( PASS_1, PASS_2, PASS_3);

    public function __construct($request = array())
    {
        if (is_array($request)) {
        if(isset($request['hostname'])) {
            if(in_array($request['hostname'], $hosts)) {
                $this->input['hostname'] = $request['hostname'];
            }
        }
        if (isset($request['username'])) {
            if(in_array($request['username'], $users)) {
                $this->input['username'] = $request['username'];
            }
        }
        if (isset($request['password'])) {
            if (in_array($request['password'], $pass)) {
                $this->input['password'] = $request['password'];
            }
        }
        if (isset($this->input['hostname']) &&
                isset($this->input['username']) &&
                isset($this->input['password'])) {
            return true;
        }
    } else {
        return false;
    }
}

I know that a connection object and curl methods are needed too. But after that it turns into a function for each API method. But any examples of best practices would make this a lot easier.

share|improve this question
if you don't want write a lot of code use SOAP or XMLRPC. wsdl file will provide every method. In REST you cannot do it. – shiplu.mokadd.im Dec 28 '12 at 1:31

1 Answer

up vote 3 down vote accepted

Try out Guzzle:

Guzzle takes the pain out of sending HTTP requests and the redundancy out of creating web service clients.

Guzzle is a framework that includes the tools needed to create a robust web service client, including: Service descriptions for defining the inputs and outputs of an API, resource iterators for traversing paginated resources, batching for sending a large number of requests as efficiently as possible.

share|improve this answer
Why downvoted? No explanation? – Roman Newaza Dec 28 '12 at 1:39
It's a very good http wrapper. But still a wrapper. It does not turn API methods to class methods automatically. – shiplu.mokadd.im Dec 28 '12 at 1:39
you don't need to turn API methods to class methods. All of that is idle flow. Keep your code simple! – Roman Newaza Dec 28 '12 at 1:41
Could you show example on REST API? – shiplu.mokadd.im Dec 28 '12 at 1:44
Read through the documentation. – Roman Newaza Dec 28 '12 at 1:45
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.