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...
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];
---------...
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...
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...
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...
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...
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...
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...
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...
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
...
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):
...
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
...
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...
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...
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:...
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
...
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...
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 ...
What's the simplest why to access/parse Google Docs Metadata feed with gdata-objectivec-client?
...
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...