EVOLUTION-MANAGER
Edit File: Plus.php
<?php /* * Copyright 2014 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ /** * Service definition for Plus (v1). * * <p> * Builds on top of the Google+ platform.</p> * * <p> * For more information about this service, see the API * <a href="https://developers.google.com/+/api/" target="_blank">Documentation</a> * </p> * * @author Google, Inc. */ class Google_Service_Plus extends Google_Service { /** View your basic profile info, including your age range and language. */ const PLUS_LOGIN = "https://www.googleapis.com/auth/plus.login"; /** Associate you with your personal info on Google. */ const PLUS_ME = "https://www.googleapis.com/auth/plus.me"; /** View your email address. */ const USERINFO_EMAIL = "https://www.googleapis.com/auth/userinfo.email"; /** See your personal info, including any personal info you've made publicly available. */ const USERINFO_PROFILE = "https://www.googleapis.com/auth/userinfo.profile"; public $activities; public $comments; public $people; /** * Constructs the internal representation of the Plus service. * * @param Google_Client $client The client used to deliver requests. * @param string $rootUrl The root URL used for requests to the service. */ public function __construct(Google_Client $client, $rootUrl = null) { parent::__construct($client); $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/'; $this->servicePath = 'plus/v1/'; $this->batchPath = 'batch/plus/v1'; $this->version = 'v1'; $this->serviceName = 'plus'; $this->activities = new Google_Service_Plus_Resource_Activities( $this, $this->serviceName, 'activities', array( 'methods' => array( 'get' => array( 'path' => 'activities/{activityId}', 'httpMethod' => 'GET', 'parameters' => array( 'activityId' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), ), ),'list' => array( 'path' => 'people/{userId}/activities/{collection}', 'httpMethod' => 'GET', 'parameters' => array( 'userId' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), 'collection' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), 'maxResults' => array( 'location' => 'query', 'type' => 'integer', ), 'pageToken' => array( 'location' => 'query', 'type' => 'string', ), ), ),'search' => array( 'path' => 'activities', 'httpMethod' => 'GET', 'parameters' => array( 'query' => array( 'location' => 'query', 'type' => 'string', 'required' => true, ), 'language' => array( 'location' => 'query', 'type' => 'string', ), 'maxResults' => array( 'location' => 'query', 'type' => 'integer', ), 'orderBy' => array( 'location' => 'query', 'type' => 'string', ), 'pageToken' => array( 'location' => 'query', 'type' => 'string', ), ), ), ) ) ); $this->comments = new Google_Service_Plus_Resource_Comments( $this, $this->serviceName, 'comments', array( 'methods' => array( 'get' => array( 'path' => 'comments/{commentId}', 'httpMethod' => 'GET', 'parameters' => array( 'commentId' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), ), ),'list' => array( 'path' => 'activities/{activityId}/comments', 'httpMethod' => 'GET', 'parameters' => array( 'activityId' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), 'maxResults' => array( 'location' => 'query', 'type' => 'integer', ), 'pageToken' => array( 'location' => 'query', 'type' => 'string', ), 'sortOrder' => array( 'location' => 'query', 'type' => 'string', ), ), ), ) ) ); $this->people = new Google_Service_Plus_Resource_People( $this, $this->serviceName, 'people', array( 'methods' => array( 'get' => array( 'path' => 'people/{userId}', 'httpMethod' => 'GET', 'parameters' => array( 'userId' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), ), ),'list' => array( 'path' => 'people/{userId}/people/{collection}', 'httpMethod' => 'GET', 'parameters' => array( 'userId' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), 'collection' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), 'maxResults' => array( 'location' => 'query', 'type' => 'integer', ), 'orderBy' => array( 'location' => 'query', 'type' => 'string', ), 'pageToken' => array( 'location' => 'query', 'type' => 'string', ), ), ),'listByActivity' => array( 'path' => 'activities/{activityId}/people/{collection}', 'httpMethod' => 'GET', 'parameters' => array( 'activityId' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), 'collection' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), 'maxResults' => array( 'location' => 'query', 'type' => 'integer', ), 'pageToken' => array( 'location' => 'query', 'type' => 'string', ), ), ),'search' => array( 'path' => 'people', 'httpMethod' => 'GET', 'parameters' => array( 'query' => array( 'location' => 'query', 'type' => 'string', 'required' => true, ), 'language' => array( 'location' => 'query', 'type' => 'string', ), 'maxResults' => array( 'location' => 'query', 'type' => 'integer', ), 'pageToken' => array( 'location' => 'query', 'type' => 'string', ), ), ), ) ) ); } }