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

Zend Imap, fetching emails in Gmail Labels

I am using Zend framework to fetch email messages from Gmail, Currently I am only able to get messages in INBOX only, After Authentication i setToken and other parameters $imap->requestAndResponse('AUTHENTICATE', $authenticateParams); $response…
Asghar
  • 2,336
  • 8
  • 46
  • 79
2
votes
0 answers

Uncaught exception 'Zend_Gdata_App_HttpException

here is my code. // Instantiate the parent object parent::__construct(false, 'Youtube Upload'); set_include_path(TEMPLATEPATH . '/inc/'); require_once ( 'Zend/Loader.php'); Zend_Loader::loadClass('Zend_Gdata_YouTube'); …
reylimjr
  • 361
  • 8
  • 16
2
votes
1 answer

Google OAuth and Zend connect using my application's credentials

My website allows users to upload videos to MY youtube account. To connect my aplication to Google (youtube) I used the component ClientLogin like this: //my credentials $user = 'mymail@gmail.com'; $pass = 'mypass'; $service =…
pleasedontbelong
  • 19,542
  • 12
  • 53
  • 77
2
votes
1 answer

Google Spreadsheets: Adding Columns using the GData API

Currently, newly created Google spreadsheets seem to default to having 20 columns. I am able to create new column headers through the cell feed, but only for those existing 20 columns. Beyond that, I cannot create new columns, much less new column…
Andrew Cheong
  • 29,362
  • 15
  • 90
  • 145
2
votes
1 answer

convert the "Zend_Gdata_YouTube_VideoFeed Object" in JSON String

I am trying to retrieving data from youtube. it is retuning the data in Zend_Gdata_YouTube_VideoFeed Object. How can I convert it in JSON string format...
2
votes
1 answer

Zend GData - can't delete google contact - Etag error

I have problem with Zend framework. I'm trying to delete single contact from google's server. I have class: class GContacts { const BASE_FEED_URI = 'https://www.google.com/m8/feeds'; private $client = NULL; private $gData = NULL; …
Ajax
  • 576
  • 2
  • 8
  • 21
1
vote
2 answers

Zend Gdata Library - Connection Timeout

I am having a new problem with the Zend Gdata library where I am regularly receiving this error: Fatal error: Uncaught exception 'Zend_Gdata_App_HttpException' with message 'Unable to Connect to ssl://spreadsheets.google.com:443. Error #110:…
Matty B
  • 1,008
  • 2
  • 13
  • 25
1
vote
0 answers

zend framework issue with gdata api

i am using zend three legged php api to grab user gmail email. when first i run three-legged.php if (!isset($_SESSION['ACCESS_TOKEN'])) { if (!isset($_SESSION['REQUEST_TOKEN'])) { // Get Request Token and redirect to Google …
Asghar
  • 2,336
  • 8
  • 46
  • 79
1
vote
0 answers

Zend_Gdata exception.

I am using Zend api to grab user gmail inbox. I am getting the following error: [Fri Mar 23 14:12:10 2012] [error] [client 119.152.61.10] PHP Fatal error: Uncaught exception 'Zend_Mail_Storage_Exception' with message 'cannot change folder, maybe it…
Asghar
  • 2,336
  • 8
  • 46
  • 79
1
vote
1 answer

Zend GData exception when upload PDF files to Google Docs

When I upload PDF files with Zend GDATA, it return this exception: Fatal error: Uncaught exception 'Zend_Gdata_App_HttpException' with message 'Expected response code 200, got 415 Content-Type application/pdf is not a valid input type.' i If try to…
David
  • 1,116
  • 3
  • 18
  • 32
1
vote
2 answers

getVideoCommentFeed (Zend Gdata Youtube API - PHP) - obtain most-liked comments

I'm trying to obtain the "most liked" comments from a video of my choice (top 2 comments) for display, using the Youtube API. I'm using Zend Gdata package to obtain all of my vid-data. I can't seem to figure out if this function exists (in fact, I…
Shackrock
  • 4,601
  • 10
  • 48
  • 74
1
vote
1 answer

Paging is not working in Zend Gdata YouTube API

I am working on uploads videos on YouTube using Zend Gdata YouTube API. It uploads well. I can easily fetch the videos on a page. But in this paging doesn't works. i am showing video records on the basis of a specific user records. It shows all…
riya
  • 15
  • 3
1
vote
1 answer

Apparently "Gaming" is not a valid youtube category

I copied and pasted the example YouTube api code for browser-based uploading to my website, but it appears when I change the category to "Gaming", it gives me a bad request error. Here is the example code: $myVideoEntry = new…
Jared
  • 396
  • 4
  • 14
1
vote
1 answer

YouTube Data API for PHP hanging locally

I am trying to use the YouTube Data API for PHP. Locally, I am running Mac 10.6.7, MAMP 1.9.6 (PHP 5.3.5), Zend Gdata 1.11.11 I am attempting to run this simple script:
SomewhereThere
  • 374
  • 2
  • 7
1
vote
1 answer

PHP: Get a specific Google Calendar feed using Zend?

Disclaimer: I did try searching first, and even found this comment, but it didn't match what I'm asking. I'm just learning to use the Zend framework to integrate Google Calendars into some software I'm building. Currently I am able to retrieve a…
Bing
  • 3,071
  • 6
  • 42
  • 81