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

Get related youtube videos by a certain uploader

For a youtube brand channel I need to find related videos only from the owner of that channel. I use the Zend_Gdata_YouTube class. To search for videos by category or keywords I'am using the function…
Sascha Galley
  • 15,711
  • 5
  • 37
  • 51
2
votes
4 answers

Google Documents List API - How to Publish a Document

I'm utterly lost as to how one can programmatically publish a Google Document (specifically a spreadsheet). I've read the Google Documents List API Protocol Guide and have found…
Matty B
  • 1,008
  • 2
  • 13
  • 25
2
votes
0 answers

Zend GData Calendar: I can't use setUpdatedMin in the query

I am trying to get all the events created on Google Calendar after a timestamp (let's say one hour ago). I am using the Zend GData library. If I run this code (after the initializations needed) everything works perfectly: $query =…
Dan
  • 15,948
  • 20
  • 63
  • 92
2
votes
1 answer

zend gdata api showing white screen :(

I am using byethost for my project.. I am trying to install zend gdata on the server.. I copied all the file to server to "root/ladert/Zend/library" I tried running the zend installation checker.. but it gives white screen.. NO output( even in view…
Gaurav Shah
  • 5,223
  • 7
  • 43
  • 71
2
votes
4 answers

Does Zend Gdata Support OAuth?

I installed Zend Gdata 1.11.2 but I don't see anything in it labeled OAuth... does it support OAuth?
John
  • 4,820
  • 21
  • 62
  • 92
2
votes
1 answer

Zend_Gdata: Retrieving text document content?

Retrieving spreadsheet content using for a specific spreadsheet isn't that hard: $key = 'txSLYk4BpIQaglM38cJbTNA'; // key for a specific spreadsheet $query = new Zend_Gdata_Spreadsheets_DocumentQuery(); $query->setSpreadsheetKey($key); $feed =…
Cambiata
  • 3,705
  • 9
  • 35
  • 45
2
votes
1 answer

Create private playlist on YouTube using Zend

I'm desperately trying to create a private playlist on youtube. It's no problem to create public playlists, the docs are very good. However I'm unable to "translate" the instructions to code. You can use the API to update a playlist's title,…
svens
  • 11,438
  • 6
  • 36
  • 55
2
votes
1 answer

Secure shared Google Calendar

I am working on a small scale website. It has a very simple idea, there are two sets of users, office and workers, both have to login to acess the site (the site is built with the Zend framework). The problem: I want to have a calendar which is…
Scoobler
  • 9,696
  • 4
  • 36
  • 51
2
votes
1 answer

(PHP) How to parse URLs in google search results?

How get google search results url? (I use Zend_Gdata_Gbase for get search google results and not DomDocument/htmlsimpleparser because its looks to me that Zend_Gdata_Gbase done specially for parsing google results. if I wrong in my selection, please…
Ben
  • 25,389
  • 34
  • 109
  • 165
2
votes
1 answer

GData API Share Calendar Zend

Hey I have been playing with the GDATA_Calendar implementation inside the Zend Framework and have been successfully able to create sub calendars. However, I have been having trouble in dynamically sharing these calendars with users. Looking over the…
Flanamacca
  • 396
  • 2
  • 8
2
votes
1 answer

Retrieving a Google Calendar Event with Zend_Gdata Library Using Event URL

I'm trying to retrieve a Google Calendar event using the Zend Gdata library. When I create an event I store in my database the event URL returned by the insertevent method. Initially I thought I could just use this URL to then delete the event later…
Ian Burris
  • 6,325
  • 21
  • 59
  • 80
2
votes
0 answers

Get All Users in Google Apps Domain After Installing App from Google Apps Marketplace

My client is a SAAS software provider. He has an app available in the Google Apps Marketplace. The customer may add the Marketplace app to his domain. The Marketplace listing provides us with a consumer key and consumer secret, which we have…
Dzhuneyt
  • 8,437
  • 14
  • 64
  • 118
2
votes
1 answer

Expected response code 200, got 400. Unable to convert document

In the last 2 weeks or so, I've suddenly started getting reports of users getting an error in our application saying "Expected response code 200, got 400. Unable to convert document." This is code that has been in place for years without any issue.…
2
votes
1 answer

How to get photos by album name Picasa and Zend GData PHP

I am having trouble accessing Picasa web albums by album name. I have album name 'My Test Album'. If I use that name (including the spaces) I receive the error: Fatal error: Uncaught exception 'Zend_Uri_Exception' with message 'Invalid URI…
nakunakifi
  • 73
  • 3
2
votes
2 answers

Getting 500 error when trying to updateUser with Google Provisioning API

I have a small script to force users on our Google Apps domain to change their password at next login. I'm using Zend Framework 1.11.13 but I also get the same results on 1.12.0. The example for updating users in the google docs (…
1 2
3
9 10