PHPackages                             avryhof/webservices - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [HTTP &amp; Networking](/categories/http)
4. /
5. avryhof/webservices

ActiveLibrary[HTTP &amp; Networking](/categories/http)

avryhof/webservices
===================

Web service classes with a cURL base

02.4kPHP

Since Nov 25Pushed 11y ago1 watchersCompare

[ Source](https://github.com/avryhof/webservices)[ Packagist](https://packagist.org/packages/avryhof/webservices)[ RSS](/packages/avryhof-webservices/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

WebServices
===========

[](#webservices)

Some Basic classes for handling Web services. Starting with a cURL Class, and extending to use the REST services for some web service provicers.

So far we have -

- Issuu
- Meetup

CurlClass
=========

[](#curlclass)

This is a foundation class that just provides easy ways to call curl functionality.

Issuu
=====

[](#issuu)

documentList() - Get the Document list foldersList() - Get the Folders List getEmbed() - Get the Embed code for a document

```
    $iss = new issuu($issuu_apikey, $issuu_apisecret);

    $docs = $iss->documentList(array(
        "resultOrder" => "desc",
        "documentSortBy" => "publishDate"
    ));

    foreach($docs->result as $doc) {
        ?>
