Questions tagged [zend-gdata]

The Zend_Gdata component is a PHP 5 interface for accessing Google Data from PHP. The Zend_Gdata component also supports accessing other services implementing the Atom Publishing Protocol.

The Zend_Gdata component is a PHP 5 interface for accessing Google Data from PHP. The Zend_Gdata component also supports accessing other services implementing the Atom Publishing Protocol.

150 questions
1
vote
1 answer

trying to figure out how to fill array in php

guys not native english speaker, so im trying my best to explain my question here foreach($columnFeed as $cellEntry){ $result[$cellEntry->cell->getColumn()] = $cellEntry->cell->getText(); } that piece of code fills me an array with rows and…
nonaxanon
  • 237
  • 4
  • 18
1
vote
0 answers

Uncaught exception 'Zend_Gdata_App_AuthException' with message 'Authentication with Google failed. Reason: BadAuthentication'

This is the script that i was run , This is working local machine not online, Please give me any suggestion private function login($user,$pass) { require_once 'Zend/Loader.php'; Zend_Loader::loadClass('Zend_Http_Client'); …
1
vote
1 answer

I can't delete an Event Feed with Google data API

Hi Guys I'm trying to delete multiple events from the Google Calendar API (From a date range). I get the feed correctly, this is not the problem. The probleme is the delete function. I get this error : "Error: You must specify an URI to which to…
1
vote
2 answers

Unable to access certain Google Drive folders using Zend GData libraries although folder is listed in My Drive

I'm querying Google Drive and passing in a folder name if which I want to list the folders/file contained with in it. My code works, I can view content of some folders, but for certain folders that are visible within the Google Drive web UI, I don't…
Jon Mears
  • 51
  • 6
1
vote
0 answers

Insert header row in a Google Spreadsheet with Zend Gdata

I'm using Zend Gdata to create worksheets in a Google Spreadsheet. Because I'm storing data in my newly-created worksheets, I progammatically set the columns' headers. $headers = array( 'Nom', 'Prénom', 'Entreprise/Organisation', …
1
vote
1 answer

Zend Gdata calendar retrieve events in a date range

I am attempting to retrieve events from my calendar, the below function works to a degree but only pulls the events over the first week or so (specifically until the 24th of the first month). I was hoping to find someone to help me figure out…
Steve Beaty
  • 59
  • 1
  • 1
  • 8
1
vote
1 answer

Zend Gdata Youtube and auto login

Hello guys I need help in auto login to youtube.com to upload videos "browser-based" (and later get them data to show in a site by api). So basicly I downloaded extension from here http://framework.zend.com/downloads/latest Zend Gdata. And make it…
user1954544
  • 1,619
  • 5
  • 26
  • 53
1
vote
1 answer

Getting video upload date with Zend Gdata Youtube API

I'm trying to get a list of videos for a specific user with all the details for the video (title, desc., date, tags...) I can get pretty much everything I need, but can't figure out how to get the upload date. I tried using getVideoRecorded() and…
Ilan
  • 29
  • 7
1
vote
1 answer

Looping through videos from a very large channel on YouTube?

I'm currently using ZendGData to get video IDs from channels on youtube. However, when the channel is quite large, I'm getting this error: Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 46 bytes) If I could, I…
Simon
  • 364
  • 1
  • 5
  • 18
1
vote
0 answers

Create spreadsheet with 10 rows and 10 columns using php

I Created a spreadsheet successfully with large number of rows and column but i want only 10 rows and 10…
Mayur Kukadiya
  • 994
  • 6
  • 20
1
vote
1 answer

Retrieving an Entire YouTube Playlist (all videos) with YouTube Gdata API

I am having a very difficult time getting this to work how I want. I am looking to grab all of the videos from a playlist. Currently I can retrieve 20 but there are some playlists that contain over 100 videos. This is where I am having a problem. I…
Cameeob2003
  • 482
  • 1
  • 6
  • 16
1
vote
1 answer

Google Docs API - Zend GData - Create new doc - 400 Bad Request - Unable to convert document - Intermittent

I am using Zend GData to upload documents to Google docs. The code works fine, except once in a while, it raises exception: 400 Bad Request - Unable to convert document. This is an intermittent issue. So I believe the code is not a problem. try { …
MavWolverine
  • 846
  • 1
  • 9
  • 24
1
vote
1 answer

zend_gdata: Get google calendar if already logged in an application

I have created one application in YiiFramework which has two functionalities. 1. Login to google For login to google, I have followed the tutorial on below website. Tutorial : https://github.com/Nodge/yii-eauth Tutorial Demo :…
Alpesh Prajapati
  • 1,593
  • 2
  • 18
  • 38
1
vote
1 answer

Zend_Gdata_YouTube detect removed video

I have the following code which is used to load video information from YouTube onto my site: try { $yt = new Zend_Gdata_YouTube(); $videoEntry = $yt->getVideoEntry($video_path); $duration = $videoEntry->getVideoDuration(); } catch…
Elie
  • 13,693
  • 23
  • 74
  • 128
1
vote
1 answer

How to get all profile ids with ZendGData Analytics?

I am using ZendGData library for ZF2. I tried to get account`s data, but there is no data about profiles. $email = $this->config['email']; $password = $this->config['password']; $service = \ZendGData\Analytics::AUTH_SERVICE_NAME; $client =…
Sergei Gorjunov
  • 1,789
  • 1
  • 14
  • 22