gdata-api

Change Gmail message routing on individual mailboxes

We are using dual delivery for one of our Google Apps domains and need to be able to disable mail delivery to the Gmail account. You can manually update the settings on a per user basis through the Admin interface by unchecking the box next to "Google Apps Email" in the Email routing section. From the Google Apps API documentation for t...

something wrong in my program by using GData xmlsupport

I'm new here ,i don't know how to use this...here is my code : NSString *strParse=@"url"; NSURL *urlParse=[NSURL URLWithString:strParse]; NSString *content=[[NSString alloc] initWithContentsOfURL:urlParse]; NSError *error; GDataXMLDocument *document=[[GDataXMLDocument alloc] initWithXMLString:content options:0 error:&error]; ---------...

How to login to gdata in GWT application deployed on GAE?

I want to use the Google account login to retrieve the informations to be used for Google's gdata api so that when I start the application deployed on Google App Engine the user is asked for its login and I can then use this information on the server side to specify the credentials for Google Calendar login (through gdata api). How can I...

newbie: how to change dotNetOpenAuth GoogleAddressBook sample to retreive more than 25 contacts?

How do you suggest I proceed in changing the GoogleAddressBook sample to retrieve > 25 contacts? Google suggests using AutoPaging=true on http://code.google.com/apis/contacts/docs/2.0/developers_guide_dotnet.html#retrieving_without_query If this is still valid, how can I go about passing this parameter in the DotNetOpenAuth sample prov...

404 when getting private YouTube video even when logged in with the owner's account using gdata-python-client

If a YouTube video is set as private and I try to fetch it using the gdata Python API a 404 RequestError is raised, even though I have done a programmatic login with the account that owns that video: from gdata.youtube import service yt_service = service.YouTubeService(email=my_email, password=my_pass...

Google Spreadsheet API problem: memory exceeded

Hi guys, 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!) was exceeded. I also got this when querying all records of this spreadsheet bu...

List Contacts from a group from Zend GData

Hi, and thanks for reading. My problem is that I'm trying to get a list of contacts belonging to a group in GData using Zend_Gdata_Query. Using $query = new Zend_Gdata_Query('http://www.google.com/m8/feeds/contacts/default/full/?group=http://www.google.com/m8/feeds/groups/xxx...xxx/base/XXX'); $feed = $gdata->getFeed($query); give m...

How do I get all the calendar entries for a particular time range using Google Calendar API

I want to view events over specific time range for a specific calendar, but am having trouble using the API, It is a generic API, and it reminds me of using the DOM. The problem is that it seems difficult to work with because much of the information is in generic base classes. How do I get the events for a calendar using Groovy or Java...

Ask for an example code for parsing xml and get attributes by using GData API

When i use GData API in my app for parsing xml,how could i get attributes and it's value? Wanted a piece of example code.Thanks a lot. xml: <playurls><url islive="0" type="3" bit_stream="1">http://vods.netitv.com//dy2/2010/02/08/cf584b76-3579-4b75-a0c8-f7a473d79f8c.mp4 </url><url islive="0" type="3" bit_stream="2">http://vods.net...

JSF and usage of gdata maps or js maps api

Hi, I am building jsf component for map servers and I was wondering if it is possible to use gdata maps api to update or retrieve new map which isn' t user map or i have to create Javascript binding for JSF. Regards Jan ...

youtube python api gdata.service. requesterror

i have the following code which is trying to add a set of videos into a youtube play list import urllib,re import gdata.youtube import gdata.youtube.service class reddit(): def __init__(self, rssurl ='http://www.reddit.com/r/chillmusic.rss' ): self.URL = rssurl self._downloadrss() def _downloadrss(self): ...

Any examples/tutorials on using Google GData API - Youtube on iphone?

Hi, I need to list a specific users uploaded videos (YouTube) in a UITableView. I've downloaded the GData source and example projects (not iphone specific) but I can't seem to get it to work. Does anybody know of any good (or any at all ;)) tutorials out there? Best regards, Magnus ...

Is there a way to manage Google Calendar sharing through Zend Gdata or otherwise in PHP?

Hello, I'm creating a custom calendar app that is using Google Calendar as a base. I am wondering if there is a way through the Zend Gdata library to manage calendar sharing. From the documentation it does not appear so, but I noticed that some other languages have the ability (.Net, Python). If it's not possible through Gdata, is the...

Using GData API for your Custom domaine name on GAE

I got this code from Google Document List Data API v 3.0 http://code.google.com/intl/fr-FR/apis/documents/docs/3.0/developers_guide_java.html URL feedUri = new URL("https://docs.google.com/feeds/default/private/full/"); DocumentQuery query = new DocumentQuery(feedUri); query.setTitleQuery("Test"); query.setTitleExact(true); query.setM...

401 and 403 Errors with google base API

I built a wiki using Google App engine and the Data APIs. The wiki pages are stored as Google Base 'Reference Articles.' I want users to be able to view, edit, and delete the items, so when a request is made to the server, client login uses my username and password, and retrieves or edits the data on the user's behalf. The login code:...

SecureSAXParserFactory error in the gdata calendar sample code.

Hi, i am currently using gdata vesion 1.41.3 and android api level 3. i am trying to use the Calendar feature of gdata. my source code is] try { CalendarService myService = new CalendarService( "exampleCo-exampleApp-1"); myService.setUserCredentials("[email protected]", "xxx"); // Send the request and print the response ...

gdata api not working on certain environment

I have a java app packaged as a war which uses the gdata api. It works fine on several machines except one, where all gdata calls fail. It throws AuthenticationException for each gdata request. I've taken care to ensure all the oauth credentials are set correctly and have deployed the exact war on other systems using the exact same proce...

How do I change the verification method when using the Google .net client library for Webmaster Tools?

var settings = new RequestSettings("appname", "googleusername", "googlepassword"); var service = new WebmasterToolsRequest(settings); var site = new Sites("http://www.mysite.com", "text/plain"); Sites resultSite = service.AddSite(site); resultSite.VerificationMethod.Type = "htmlpage"; resultSite.SitesEntry.Update(); .Update fails with ...

Accessing Google Docs Metadata feed with gdata-objectivec-client

What's the simplest why to access/parse Google Docs Metadata feed with gdata-objectivec-client? ...

Storing meta information in Google Sites and the API - round-tripping html ?

A client is using Google Sites for API documentation. Initially, this documentation was generated by a python script that reads the java source code (tld, tag library descriptor, files in this case) and uses the Google Sites API to create/update pages at the site. This worked great - until non-engineers wanted to update descriptions, e...