I want to use the Google Base Data Api to search for snippets and download these informationen to show them in my activity.
I know that the project is still in Google Code Labs, meaning it is in a formative state. But I wonder if there is already a version that i can implement in my Android Application. I know that I can try to do queri...
Hi
I am using the gdata library in my iPhone app to search for some youtube videos. Now most of the videos come up fine but some videos are not compatible for playback with the iPhone. I am using a webview to embed the video.
In case of videos which cannot be played on the iPhone, they show up in the webview without a preview and just ...
Is somebody managed to upload gzipped GData POST/PUT requests to Google? Is it even supported or possible? I guess it should be simple as just defining Content-Encoding header with "gzip" but I just get 400 bad requests.
...
I have been looking for a way to get the comments from a Blogger blog if I have a regular URL. I know you can get the blogID by scraping the html, which is somewhat unpleasant but has a few standard ways to get it. The problem is that I have not been able to find a way to get the comments for a specific post if I have only the post URL a...
Hello I am trying to find out how to get the title of groups the contact belongs to. This is how I am getting my other contact information:
query = gdata.contacts.service.ContactsQuery()
query['showdeleted'] = 'true'
query.updated_min = str(lastKnownTime)
query.max_results = 5000
feed = gd_client.GetContactsFeed(query.ToUri())
insertCo...
i am inserting events in my android calendar. the code is following:
ContentValues event = new ContentValues();
event.put("calendar_id", calId);
event.put("title", "Event Title");
event.put("description", "Event Desc");
event.put("eventLocation", "Event Location");
event.put("allDay", 1);
event.put("eventStatus",...
I would like to retrieve through the python blogger API the list of published (not draft) blog entry from my blog. What parameter do I need to add to specify draft=false.
query = gdata.blogger.client.Query()
query.max_results = 3
feed = bc.GetPosts(blog_id=blog_id, query=query)
...
Is it possible to list all the files of the google docs in android using gdata-client?
public class GoogleDataExample extends Activity
{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
try
...
I'm trying to get a list of videos by a certain user using the YouTube Java GData library/API.
However, when I try to create a service by using YouTubeService service = new YouTubeService("Cyphon-MyCampusPulse-1", YOUTUBE_API_KEY);, I get the following runtime exception:
Exception in thread "main" java.lang.NoClassDefFoundError: javax...
Hi,
I was wondering if anyone could help me...
I want to copy a document as mentioned here
http://code.google.com/apis/documents/docs/3.0/developers_guide_protocol.html#CopyingDocs
I am using the latest Java Gdata Library, which doesn't have a nice wrapper method to do it, and I am a newb to the java gdata lib.
I have already got an...
I'm creating a site where people can upload videos to youtube through my website. But instead of uploading via the account that the users have, I want the file to be uploaded from my account instead. So the users wouldn't even have to view the authentication process since it's auto-signed in to the specified account.
Is this possible?
...
Hi, I'm writing a web app to autopost on google buzz.
I wrote a C# library to manage with "Oauth dance" and in it works fine, I can get oauth_token and oauth_token_secret.
I used www.googlecodesamples.com/oauth_playground/ to validate
my oauth_token and oauth_token_secret and it works fine. I tested it
with GET and https://www.googlea...
I can successfully get a google AuthSub Token
But on running this code im getting the exception
java.lang.NullPointerException: No authentication header information
The code is
...
....
ContactFeed contactFeed = getContactList(token);
...
....
public ContactFeed getContactList(String token)
{
ContactFee...
Since Days i'm trying to parse a YOUTUBE-XML-Feed by using GDATA-API for iOS.
http://code.google.com/intl/de-DE/apis/youtube/2.0/developers_guide_protocol_channel_search.html
NSDictionary *namespaces = [NSDictionary dictionaryWithObjectsAndKeys:
@"http://www.w3.org/2005/Atom", @"",
@"http://schemas.google.com/g/2005"...
So I am trying to sync to google docs, without having to ask the user for his credentials. I use this code to get an auth-token:
AccountManager mgr = AccountManager.get(activity);
authToken = mgr.blockingGetAuthToken(account, DocsService.DOCS_SERVICE, true);
This returns a auth-token that looks well-formated. So on my DocsService I ru...
How do you retrieve unlisted "My Map" data using the Google Maps Data API in Javascript without needing to authenticate the user?
I want everyone that goes to my website to use the same map feed.
Thanks
...
I have an application that currently uses Apache Abdera to parse Atom Pub documents (Workspace, Collection, Feed, Entry) - and want to switch the the GData Libraries, mainly to get rid of a lot of dependencies and I have found the GData calls to be consistently faster. Anyway, I cannot figure out how to generate some of these document t...
I wrote a script here to access a Google Spreadsheet by name using Ruby:
http://gist.github.com/606488
I'm trying to use gdata as per the instuctions here:
http://code.google.com/apis/gdata/articles/gdata_on_rails.html
How come I'm getting a 401 error "Token invalid" when using the gdata gem?
It works fine when I use the methods descr...
Hi,
Have any of you encountered this? I am using gdata-api (GData-Version: 3.0, python library v2.012) to download a google docs presentation as a bunch of images (one image per slide). However, when I download a presentation using "exportformat=png", I only get an image of the first slide ! Is there any workaround to get all the pages ...
Hi, i have to implement Picasa client for iPhone. I have few queries in that regards.
Are the api deprecated now? What if I still implement them now? Where can I find good tutorial on the same. I don't know anything about implementing google data. Also I am a newbie for iPhone development. Also I came across a few pages which said that t...