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

Youtube API client login from different location

I have a Web server on my home computer, in Australia, that I upload a movie at midnight each night to youtube. It works fine and no problems. I am moving my Web server over to a hosted sshVM server in LA and I ran the same script from this…
Giles
  • 23
  • 7
0
votes
1 answer

Add GData to Zend Framework2

Okay, so this has proven to be more difficult than I expected and think it should be. All I want to do is utilize the GData library for some youtube functionality in my site. However, I can't seem to figure out how to add everything in so Zend…
Crevax
  • 17
  • 4
0
votes
1 answer

Zend Gdata SSL always required?

I've been trying out the Zend Framework 1.12 Gdata library. I've tried some random code snippets from the interweb, but my application keeps returning the needed SSL installation onto my server (localhost). I'm wondering if the SSL certificate is…
Willem Poortman
  • 121
  • 1
  • 13
0
votes
1 answer

Using Zend Gdata spreadsheets to get worksheet id

I am trying to use zend gdata to get the worksheets for a spreadsheet. I am able to get the list of worksheets using $query = new Zend_Gdata_Spreadsheets_DocumentQuery(); $query->setSpreadsheetKey($key); $feed =…
Leah Collins
  • 637
  • 2
  • 9
  • 21
0
votes
1 answer

zend driven web site does not recognize result of custom functions defined in google spreadsheet if target sheet is not open/active

I am using the Zend Gdata library to build a website using content from a Google Spreadsheet. The spreadsheet contains many custom functions. If the target spreadsheet is open/active, all of the content in the resulting web site is…
0
votes
1 answer

deleting youtube playlist with zend gdata lib

I am looking for a way to get an object for a specific video playlist on YouTube using the Zend library. I tried this piece of code: $url = 'http://gdata.youtube.com/feeds/api/playlists/'.$_GET['plid'].'?v=2'; $feed =…
0
votes
1 answer

google data api auth without raising user form login

I'm building an web which will get data from picasa. Several people will use. The web is just have 1 data source (1 picasa account) but I want to make the user authorized into that account without raising google form login page. I know that there is…
yosafatade
  • 185
  • 1
  • 2
  • 12
0
votes
2 answers

Zend Gdata Google Spreadsheets "!=" operator

I am having troubles with Zend_Gdata API for google spreadsheets queries. I want to perform a query returning every empty value of a given column/field. My code: $query = new Zend_Gdata_Spreadsheets_ListQuery(); …
Giu87
  • 96
  • 5
0
votes
1 answer

Getting TOKEN_INVALID when uploading to YouTube

I'm attempting to upload a video to YouTube via the API using Zend_Gdata (Zend Framework 1.12.0). I had no problems getting direct upload to work, but browser-based upload always gives me a 400 - INVALID TOKEN error. I'm pretty sure I must be…
h00ligan
  • 1,471
  • 9
  • 17
0
votes
1 answer

Mismatch between reported totalResults from video feen and actual total in YouTube PHP API?

I'm using the Zend Youtube API. I do a query for a feed, which reports it has a total of 886 entries, but when I fetch all the feeds and iterate, the actual number is like 782. Is there actually a mismatch, or is there some foolish error in my code…
ChrisNY
  • 3,917
  • 4
  • 27
  • 31
0
votes
1 answer

Zend Gdata Calendar: setQuery with exact phrase match?

I am having trouble using Zend_Gdata_Calendar to return a subset of Google Calendar events with an exact phrase match. The reference guide for Zend_Gdata_Books, in the setQuery() section, suggests this should be possible with Zend: Note that any…
0
votes
1 answer

Google cPanel and Zend/PHP

Im trying to retrieve all users from a domain, but I get an error.. Have downloaded the Zend library Docs: https://developers.google.com/google-apps/provisioning/?hl=da#retrieving_user_accounts Get this error: Fatal error: Call to undefined method…
clarkk
  • 27,151
  • 72
  • 200
  • 340
0
votes
1 answer

The Zend_Gdata library for Youtube is not imported to cakephp 1.2 application in linux environment

I am using the Zend_Gdata plugin to authenticate Youtube account credentials in our web application using cakephp 1.2 . The Zend/Gdata/ClientLogin.php file is used to call the authentication methods in our youtube controller file as follows :…
0
votes
1 answer

Retrieve the URL for a Google Spreadsheet using Zend

We have a form that submits data to various Google Spreadsheets using Zend Gdata. I'd like to be able to display the URL to the spreadsheet the data was submitted after the submit process finishes. I can't seem to find anyway to retrieve the URL for…
Jonathan
  • 323
  • 2
  • 11
0
votes
1 answer

Copy a Document using Zend Gdata Google Docs API

I am trying to determine how I can make a copy of a document using the Google Docs API Zend Gdata client. I have the following code which is accessing the DocumentList and allows me to retrieve the individual entries. $service =…
1 2 3
9
10