Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 856 Bytes

README.md

File metadata and controls

37 lines (28 loc) · 856 Bytes

EventfulApi

A PHP class to help communicate with the Eventful REST API.

Example - Basic Usage

This example will show how to make a basic event search request from the Eventful REST API using the EventfulApi class.

<?php
require_once 'EventfulApi.php';

// Define your Eventful API key (Eventful must provide you with a key)
$apiKey = 'aBcDXNPDLjQMxb7w';

// Create an instance
$eventfulApi = new EventfulApi($apiKey);

// Attempt to search for events in Los Angeles, CA
$args = array(
   'keywords' => 'music',
   'location' => 'Los Angeles, CA'
);
$isSuccessful = $eventfulApi->call('events/search', $args);
if ($isSuccessful)
{
   // Output the response as a string
   echo $eventfulApi->getResponseAsString();
   
   // Output the response as an array
   var_dump($eventfulApi->getResponseAsArray());
}