This bundle integrates the JcrollFoursquareApiClient into the Symfony framework.
This bundle will allow you to easily configure the JcrollFoursquareApiClient and additionally easily allow you to integrate with the HWIOAuthBundle (if you are using it) for signed requests to the foursquare api (see the JcrollFoursquareApiBundleSandbox for examples).
Add JcrollFoursquareApiBundle in your composer.json:
{
"require": {
"jcroll/foursquare-api-bundle": "~1"
}
}Download bundle:
$ php composer.phar update jcroll/foursquare-api-bundleAdd the JcrollFoursquareApiBundle to your AppKernel.php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
...
new Jcroll\FoursquareApiBundle\JcrollFoursquareApiBundle(),
...
);
...
}-
If you're not using HWIOAuthBundle add your application id and secret parameters (other parameters are optional):
# app/config/config.yml jcroll_foursquare_api: client_id: <your_foursquare_client_id> client_secret: <your_foursquare_client_secret> version: 20140806 # optional mode: foursquare # optional
-
If you are using HWIOAuthBundle configure a
foursquareresource owner and the client's credentials will automatically be configured (unless you wish to specify custom values forversionormode).# app/config/config.yml hwi_oauth: resource_owners: any_name: type: foursquare client_id: <your_foursquare_client_id> # will automatically inject in the client client_secret: <your_foursquare_client_secret> # will automatically inject in the client
$client = $this->container->get('jcroll_foursquare_client');
$client->setToken($oauthToken); // optional for user specific requests
$client->setMode('swarm'); // switch from mode 'foursquare' to 'swarm'
$command = $client->getCommand('venues/search', [
'near' => 'Chicago, IL',
'query' => 'sushi'
]);
$results = (array) $client->execute($command); // returns an array of resultsYou can find a list of the client's available commands in the bundle's client.json but basically they should be the same as the api endpoints listed in the docs.
If you are using HWIOAuthBundle this bundle will automatically look for
a resource_owner of type foursquare in that bundle's configuration and inject the client_id and client_secret
into the jcroll_foursquare_client service (no need to configure this bundle unless you want to define custom values
for version or mode).
Additionally a listener will be configured and if the authenticated user possesses an oauth token belonging to foursquare
the token will be automatically injected into the jcroll_foursquare_client service for signed requests (no need to call
setToken).
