From 57838c8cb3bb293e637ad826696df3a89736b0d3 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 19 Nov 2012 20:49:37 +0100 Subject: [PATCH] fixed API configuration --- google-api/config.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/google-api/config.php b/google-api/config.php index 00917f4..a536eb4 100644 --- a/google-api/config.php +++ b/google-api/config.php @@ -19,7 +19,7 @@ global $apiConfig; $apiConfig = array( // True if objects should be returned by the service classes. // False if associative arrays should be returned (default behavior). - 'use_objects' => false, + 'use_objects' => true, // The application_name is included in the User-Agent HTTP header. 'application_name' => '', @@ -33,7 +33,7 @@ $apiConfig = array( 'developer_key' => '', // Site name to show in the Google's OAuth 1 authentication screen. - 'site_name' => 'www.example.org', + 'site_name' => '/dev/nulll', // Which Authentication, Storage and HTTP IO classes to use. 'authClass' => 'Google_OAuth2', @@ -78,4 +78,4 @@ $apiConfig = array( 'tasks' => array('scope' => 'https://www.googleapis.com/auth/tasks'), 'urlshortener' => array('scope' => 'https://www.googleapis.com/auth/urlshortener') ) -); \ No newline at end of file +);