A simple Laravel wrapper for https://github.com/stephenyoung/php-foursquare
php artisan bundle:install foursquare-sdk
Add the following to your application/bundles.php file:
'foursquare-sdk' => array('auto' => true),
Add the following to your application/config/foursquare.php file:
return array(
'app_id' => '',
'secret' => '',
);
Foursquare::SetAccessToken('XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX');
$self = Foursquare::GetPrivate('users/self');
OR
$foursquare = IoC::resolve('foursquare-sdk');
$foursquare->SetAccessToken('XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX');
$self = $foursquare->GetPrivate('users/self');