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
3
votes
2 answers

How do I insert into non-default Google Calendar using Zend / PHP

I'm trying to insert a new event into Google Calendar, which I can do fine by the following: $sname = Zend_Gdata_Calendar::AUTH_SERVICE_NAME; // predefined service name for calendar $client =…
davearchie
  • 317
  • 2
  • 9
3
votes
1 answer

Retrieving progress of Direct Upload using youtube gdata API

I'm following along with the documentation about using the gData Youtube API for doing direct uploads with PHP. I can successfully upload videos, so thats all well and good. The part I'm having trouble figuring out, if its even possible is getting…
raytiley
  • 684
  • 2
  • 7
  • 17
3
votes
0 answers

YouTube videos not playing in chromeless player in Flash using Zend_GData_Youtube class in PHP to pass results to flash (Works fine on Mac Safari??)

I have been noticing some strange (but consistent) behavior with the chromeless YouTube Player API. I have a Flash AS2 SWF that uses cueVideoById() to show the thumbnail images of videos which works great. When the thumb is clicked I call…
undefined
  • 5,190
  • 11
  • 56
  • 90
3
votes
3 answers

Google Spreadsheet API: memory exceeded

Don't know if anyone has experience with the Google Spreadsheets API or the Zend_GData classes but it's worth a go: When I try to insert a value in a 750 row spreadsheet, it takes ages and then throws an error that my memory limit (which is 128 MB!)…
Robbert
  • 345
  • 3
  • 15
3
votes
1 answer

How to get the Video-ID of a just uploaded Youtube movie

how can i get the video-id of a just uploaded Youtube movie? I'm using this code: $yt = new Zend_Gdata_YouTube($httpClient); // create a new Zend_Gdata_YouTube_VideoEntry object $myVideoEntry = new Zend_Gdata_YouTube_VideoEntry(); // create a new…
murze
  • 4,015
  • 8
  • 43
  • 70
3
votes
1 answer

get Google client using access token

I already stored the access and refresh token in my database. I want get the google client using that. I don't know how to use it in below example $client = Zend_Gdata_ClientLogin::getHttpClient('you@there.com', 'password',…
Gowri
  • 16,587
  • 26
  • 100
  • 160
3
votes
1 answer

Zend Gdata Login with Two Step Authentication / Verification

I recently activated two step verification for my Gmail account and consequently noticed that my applications which use the Zend Gdata library stopped working. I disabled two factor verification and then they started working again. I can't find…
Matty B
  • 1,008
  • 2
  • 13
  • 25
3
votes
1 answer

Zend GData upload file into a specific folder

I am trying to upload a file into a specific folder. I have the folder URI so I pass that as the URI in uploadFile function in Zend API. However, I end up getting a 401 error. This code works and uploads the file to the base of Google…
Obaid
  • 4,328
  • 9
  • 42
  • 42
2
votes
1 answer

PHP Zend_Gdata_Spreadsheets update multiple cells in a batch?

I'm using Zend_Gdata_Spreadsheets to interact with a Google Docs spreadsheet in PHP. I need to modify many cells in the spreadsheet, so I use the updateCell() method: Example: $spreadsheetService->updateCell(1, 1, "hello", $spreadSheetKey,…
matt
  • 670
  • 2
  • 9
  • 18
2
votes
0 answers

youtube API - strange issue with ZendGdata

I have installed the ZendGdata PHP library into /var/www/html on my local fedora machine. I am trying to learn to use the youtube API by following the instructions at this link http://code.google.com/apis/gdata/articles/php_client_lib.html Without…
hAcKnRoCk
  • 1,118
  • 3
  • 16
  • 30
2
votes
1 answer

Upload docs using zend gdata plugin

I am trying to upload a document into Google docs using the Zend_Gdata plugin. It uploads fine. But the document by default becomes private. How can I set it to public. And how can I get the doc id and URL link to my doc so that others can access it…
Josh Randall
  • 1,284
  • 4
  • 18
  • 31
2
votes
5 answers

"Unknown authorization header" while fetching google contacts using php, (zend) gdata and 2 legged oauth

I am writing a 2 Legged OAuth app (Google Marketplace app) using zend gdata library. I need to fetch google contacts. Code as given below. require_once 'Zend/Oauth/Consumer.php'; $oauthOptions = array( 'requestScheme' =>…
Amit
  • 71
  • 1
  • 8
2
votes
1 answer

Retrieve Google Calendar owner's email address

Is it possible, with the Google Calendar API / Zend Gdata, to get the user's google email address, after he successfully authenticated with AuthSub and I have an access token? I have a problem with some users having multiple Gmail and Google Apps…
Dan
  • 71
  • 1
  • 7
2
votes
1 answer

Zend_Gdata_Spreadsheets: How to delete and insert 2 columns of new data in efficient way

The case: Spreadsheets that have 2 columns with data. The columns are named "first name" and "last name". Some examples of datasets: "John Bond" and "Stive Colins" etc. I need to delete the above columns data and insert some new data into these…
Ben
  • 25,389
  • 34
  • 109
  • 165
2
votes
1 answer

How download cvs file with google authorization in google insights - have to use zend classes and not other php ways (zend_gbase etc.. )

How download cvs file with google authorization in google trends service - have to use zend framework classes and not other php ways . Thanks, Yosef
Ben
  • 25,389
  • 34
  • 109
  • 165
1
2
3
9 10