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

Zend_Gdata and OAuth

I successfully retrieved token key / secret after applying Google Hybrid Protocol (OpenID + OAuth). Then I'm looking into Zend documentation here: http://framework.zend.com/manual/en/zend.gdata.html ... and into Calendar API example…
Meglio
  • 1,646
  • 2
  • 17
  • 33
13
votes
5 answers

Integrating Outlook Calendar to Website / Other

When the users add events to the online calendar they also can be added to the outlook calendar (synchronize). Obviously a site built using PHP can not integrate with desktop application directly, so I am looking alternative options. Options I…
TheDeveloper
  • 890
  • 1
  • 15
  • 37
9
votes
2 answers

Zend Youtube API - Upload Videos on a Single Account?

I want to allow anyone register on my site, to upload their videos on my own youtube user channel. I don't want them to comment any videos, or anything that requires their own login credentials. Should I use: ClientLogin authorization ? If so, how…
MEM
  • 30,529
  • 42
  • 121
  • 191
8
votes
5 answers

zend gdata and google spreadsheet not connecting

ive been using Zend Gdata for a while now, and today im getting an error of Notice: Undefined offset: ClientLogin.php on line 150 via php, this has been working for a while now, and today without changing anything it stopped working, im guessing…
nonaxanon
  • 237
  • 4
  • 18
7
votes
1 answer

AuthSub target path prefix does not match the provided "next" URL

I am trying to use the Gcal API in PHP. I am using the ZEND framework function getAuthSubUrl($company) { $next = "http://$company.mysite.com"; $scope = 'http://www.google.com/calendar/feeds/'; $secure = false; $session = true; return…
6
votes
2 answers

Youtube API - How to limit results for pagination?

I want to grab a user's uploads (ie: BBC) and limit the output to 10 per page. Whilst I can use the following URL: http://gdata.youtube.com/feeds/api/users/bbc/uploads/?start-index=1&max-results=10 The above works okay. I want to use the query…
zardon
  • 2,910
  • 6
  • 37
  • 58
5
votes
3 answers

Get complete playlist listing for a YouTube User via API

So, here's my code for getting a youtube user's public playlists: function getyoutubeplaylists($userName) { $yt = connectyoutube(); $yt->setMajorProtocolVersion(2); $playlistListFeed = $yt->getPlaylistListFeed($userName); foreach ($playlistListFeed…
poolnoodl
  • 413
  • 1
  • 4
  • 10
4
votes
2 answers

Error inserting row in Google Spreadsheet using Zend Gdata

I'm trying the simplest possible scenario to insert row in Google Spreadsheet using Zend Gdata 1.11 library. Spreadsheet has word 'Kolona' in cell A1. Here is entire php file:
Milan
  • 969
  • 2
  • 16
  • 34
4
votes
2 answers

Zend GData Spreadsheet WorksheetID

What is the $worksheetId from the Zend GData documentation supposed to be? http://framework.zend.com/manual/en/zend.gdata.spreadsheets.html $query = new…
David Souther
  • 8,125
  • 2
  • 36
  • 53
4
votes
1 answer

Using result from android's AccountManager.getAuthToken via Zend_Gdata (401 unauthorized)

I need to retrieve an auth token from an Android device (client side) using AccountManager.getAuthToken and then re-use it via Zend_Gdata (server side) When using the calendar 'cl' authTokenType things work as expected, Android source: String…
lostsource
  • 21,070
  • 8
  • 66
  • 88
4
votes
1 answer

How to convert a Blogger user name to numeric ID

When working with the Blogger API the user ID is expected to be numeric. I found out my numeric ID by looking at the URL for my Blogger profile page. However, I want my users to be able to use their usual Blogger user name. So: Is there a way to…
pthulin
  • 4,001
  • 3
  • 21
  • 23
4
votes
2 answers

Get Youtube VideoID details in array

I've been struggling with this for hours and i have no idea why is not working. I need to get Details from a VideoID using YouTube API and Zend, so i created a function like this function listYoutubeVideo($id) { $videos = array(); try { $yt…
Peibol
  • 147
  • 4
  • 12
4
votes
1 answer

List recreated album names that were previously deleted

Background I would like to list all the albums for my account that match a given name. Problem After deleting an album, then recreating an album with the exact same name, the code for $albumQuery->setAlbumName( ... ) to find the album name fails…
Dave Jarvis
  • 30,436
  • 41
  • 178
  • 315
3
votes
2 answers

Zend_GData Spreadsheet - Invalid query parameter value for grid-id

I am trying to update a google spreadsheet through Zend_GData library. I am sure the user ID and password is correct. I think the issue is with spreadsheet key or worksheet ID. Even I don't know exactly how to get this worksheetID. Kindly help me on…
Prasad Rajapaksha
  • 6,118
  • 10
  • 36
  • 52
3
votes
2 answers

Add a contact to a group using Zend_GData and Google Contacts API

I have an application using zend_gdata and create contact with the code below. $doc = new DOMDocument(); $doc->formatOutput = true; $entry = $doc->createElement('atom:entry'); $entry->setAttributeNS('http://www.w3.org/2000/xmlns/' ,'xmlns:atom',…
Ced
  • 199
  • 3
  • 15
1
2 3
9 10