Skip to content

petroleumjelliffe/Awsm_Service_Untappd

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 

Repository files navigation

PHP library to interact with the public Untappd API version 3, patterned
after other service libraries in Zend Framework.

Information on the API can be found on Untappd's website.
http://untappd.com/api/dashboard

An API Key is required.  An Untappd username and password are required for
certain method calls, such as myFriendFeed.  Contact Untappd to attain your
api key.

==============================================


Usage:

<?php

$apiKey   = 'your-api-key';
$username = 'your-username';
$password = 'your-password';
        
$untappd = new Awsm_Service_Untappd($apiKey, $username, $password);
        
try {
    $result = $untappd->myFriendFeed();
} catch (Awsm_Service_Untappd_Exception $e) {
    die($e->getMessage());
}

About

PHP library to interact with the Untappd public API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published