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
0
votes
1 answer

Upload a document using Zend gdata

I'm trying to upload a simple csv document to google docs using zend gdata library but somehow it gets stuck. I've looked all files used for upload and found where it gets stuck: On line: 229 of Zend/Gdata/Docs.php after: $fs =…
eymen
  • 628
  • 6
  • 17
0
votes
1 answer

Restoring a Google Doc from Trash using Zend GData

I am creating a filemanger that uses Google Docs for storage, but I am having difficulty working out how to restore a file that has been sent to the trash. I can send to trash by using this code: $resourceId = "file:12345"; $link =…
amburnside
  • 1,943
  • 5
  • 24
  • 43
0
votes
1 answer

Get response from loading movie to youtube

i am using the ZEND Gdata and youtube api to upload vidoes to youtube http://code.google.com/apis/youtube/2.0/developers_guide_php.html#Direct_Upload When I upload a Video how do I capture the Video ID that was generated and also the youtube link…
Yan
  • 1,424
  • 4
  • 21
  • 44
0
votes
1 answer

Permission denied for document creation using Gdata services

I'm trying to create an empty Spreadsheet using Gdata API. As I've reached the same problem as this other friend here (http://goo.gl/AHT7S) the default Zend API do not support this operation. So, I'm trying to implement it. Actually I fell we almost…
Nigini
  • 454
  • 1
  • 5
  • 16
0
votes
1 answer

Searching YouTube using API from PHP with more than one word in search term

I have been trying to use the YouTube API to search for videos from YouTube using the Zend Gdata class. When I type a search term with a single word I get back expected results but when I start using more than one work in my search term I dont seem…
undefined
  • 5,190
  • 11
  • 56
  • 90
0
votes
2 answers

Zend Gdata include path issue (Loader.php)

I've been trying to install Zend Gdata. I'm running from a dev environment so have access to php.ini. I've set the include path and when I run the verification script I get the following.. Ran PHP Installation Checker on…
Robert
  • 1
  • 1
  • 1
0
votes
2 answers

Write access to Groups with Google Apps Provisioning API

I am writing an app to interact with our Google Apps for Education domain using Zend Gdata framework and 3-legged OAuth. So far I am only able to gain read-only access to Groups. It works fine and I have access to all information. However, write…
solefald
  • 1,739
  • 1
  • 15
  • 29
0
votes
2 answers

How do I convert this one element of the array to utf-8?

Using Zend _gdata. For some reason, recently the $when string is no longer utf-8. I need to convert it to utf-8. All the other fields are working fine. foreach ($feed as $event) { //iterating through all events $contentText =…
Joel
  • 2,691
  • 7
  • 40
  • 72
0
votes
1 answer

Zend GData delete events in a range on non-primary calendar

How can I programmatically delete events in a secondary calendar in Google calendar for a specific date range? I have been searching for a few days now and all the tutorials and questions answered so far only show how you can delete on the default…
Rasika
  • 1,980
  • 13
  • 19
0
votes
2 answers

Zend Gdata Library

hi i am useing zend Gdata Library for youtube videos i am trying to show more then 20 videos or i can set how much videos i want to show but i found no options $yt = new Zend_Gdata_YouTube(); $videoFeed = $yt->getUserFavorites('liz'); is there…
user382538
0
votes
1 answer

Zend Paginator with Gdata Youtube

How Zend_Paginator can work according to the exchange of the variable query? In line 8 performs a single fetch and does not change even by changing the query variable. How to do paging function in accordance with the start-index from gdata feed? The…
Diogo Alves
  • 378
  • 2
  • 13
0
votes
1 answer

Updating Picasa Video Thumbnails Using Zend GData Picasa API

I want to update the thumbnail of my video in picasa web albums using the API. I've got the Photos PHP sample code for the Photos data API running. The documentation says that I can "Provide your own video thumbnail" by updating the photo. I've…
Josh
  • 6,256
  • 2
  • 37
  • 56
0
votes
1 answer

PHP: Zend: Wrong scope and Google API spreadsheet

I want to manipulate Google Spreasheet in my application (in php), so, to do this, I want to use the google docs api with the zend gdata librairy. I take this code in the zend sample docs but I get an error 500: $_SESSION['docsSampleSessionToken'] =…
Kiva
  • 9,193
  • 17
  • 62
  • 94
0
votes
1 answer

Does anyone know how to get Zend_Gdata_Calendar to fetch events for secondary calendars?

I have got as far as using ClientLogin to log in to the Google Account, I can retrieve a list of the calendar names for this user (using the example code on the Dev Guide). This is great. However, when I demand a list of events (again using Google's…
ben
  • 1,583
  • 2
  • 11
  • 12
0
votes
1 answer

An Ajax request is taking 6 seconds to complete, not sure why

I am working on a user interface, "dashboard" of sorts which has some div boxes on it, which contain information relevant to the current logged in user. Their calendar, a todo list, and some statistics dynamically pulled from a google spreadsheet. I…
TechplexEngineer
  • 1,836
  • 2
  • 30
  • 48