fali 0 Posted September 24, 2014 Report Share Posted September 24, 2014 please update the google api php client herex2\protected\extensions\google-api-php-client\src\service\Google_ServiceResource.phpadd below line'syncToken' => array('type' => 'string', 'location' => 'query'),to this arrayprivate $stackParameters = array( 'alt' => array('type' => 'string', 'location' => 'query'), 'boundary' => array('type' => 'string', 'location' => 'query'), 'fields' => array('type' => 'string', 'location' => 'query'), 'trace' => array('type' => 'string', 'location' => 'query'), 'userIp' => array('type' => 'string', 'location' => 'query'), 'userip' => array('type' => 'string', 'location' => 'query'), 'quotaUser' => array('type' => 'string', 'location' => 'query'), 'file' => array('type' => 'complex', 'location' => 'body'), 'data' => array('type' => 'string', 'location' => 'body'), 'mimeType' => array('type' => 'string', 'location' => 'header'), 'uploadType' => array('type' => 'string', 'location' => 'query'), 'mediaUpload' => array('type' => 'complex', 'location' => 'query'), );so it becomesprivate $stackParameters = array( 'alt' => array('type' => 'string', 'location' => 'query'), 'boundary' => array('type' => 'string', 'location' => 'query'), 'fields' => array('type' => 'string', 'location' => 'query'), 'trace' => array('type' => 'string', 'location' => 'query'), 'userIp' => array('type' => 'string', 'location' => 'query'), 'userip' => array('type' => 'string', 'location' => 'query'), 'quotaUser' => array('type' => 'string', 'location' => 'query'), 'file' => array('type' => 'complex', 'location' => 'body'), 'data' => array('type' => 'string', 'location' => 'body'), 'mimeType' => array('type' => 'string', 'location' => 'header'), 'uploadType' => array('type' => 'string', 'location' => 'query'), 'mediaUpload' => array('type' => 'complex', 'location' => 'query'), 'syncToken' => array('type' => 'string', 'location' => 'query'), ); Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.