gdata-api

Google+ photos api [closed]

别说谁变了你拦得住时间么 提交于 2019-11-30 13:28:51
Is there a Google+ photos gdata API? I was using Google picasa API but picasa has a 1 GB limit for photos. I want to upload all my photos using the script which i am writing to Google+ photos. Is there a Google+ photos gdata API? Google+ does not currently have a public photo API. It was accidentally announced at one point but has not been officially announced since. If 1GB is not enough you can pay to increase it . Picasa has a 1GB limit for photos greater than 2048 x 2048 pixels. However, there is no limit to photos which are uploaded under this size limitation. On the other hand, you can

how to work with spreadsheets using Google Drive API on iOS

时光毁灭记忆、已成空白 提交于 2019-11-30 08:51:19
I'm trying to write an iPhone app that stores its database in a Google spreadsheet. I followed the DrEdit example here which uses the Drive API to read/write plain text files to Google Drive. I'm trying to modify the example app to work with spreadsheets instead. I was able to upload a csv file and ask Google to convert it. However, what I really want is to directly work with mimeType: "application/vnd.google-apps.spreadsheet". I'm very new at this and it would be extremely helpful if someone could point me to an example. For starters, I'd like to achieve something like the following - (void

Youtube Playlist shown in ListView

穿精又带淫゛_ 提交于 2019-11-30 05:34:12
问题 I have a GDATA link that I want to use in my App. This link contains a playlist and I want that playlist to be displayed in a ListView . The user will then select the video he/she wants and will then be able to play it in side the app using the local Youtube App. Please point me to a tutorial that is intuitive. I know that the YouTube API page contains all the info, but I can make heads or tails of it. 回答1: I hope this will give you an idea try this (just a sample) and if you have better

How do I authorize a gdata client without using the gdata oauth2 workflow?

我是研究僧i 提交于 2019-11-29 23:15:44
问题 I already have an access_token and refresh_token, but I can't figure out a way to create an authorized gdata client without going through the entire token generation workflow in gdata. 回答1: So I got this working finally. Here's how I did it: client = gdata.contacts.client.ContactsClient() credentials = gdata.gauth.OAuth2Token(client_id = 'client_id', client_secret = 'client_secret', scope = 'https://www.google.com/m8/feeds/', user_agent = auth.user_agent, # This is from the headers sent to

Gmail Task API exist?

大兔子大兔子 提交于 2019-11-29 20:18:37
Inside Gmail, there is a small function called "Task". It can allow me to enter a to-do-list. I'm wondering if there is any official / unofficial Google API to access / update the list by Java language? BrianH The official Google Task API has been released in May 2011 (Well, it's in Labs, but it is official) https://developers.google.com/google-apps/tasks/ Here are the Java specific libraries: https://developers.google.com/api-client-library/java/ The official Google Tasks API doesn't exist as of now. There is a feature request open at http://code.google.com/p/gdata-issues/issues/detail?id=987

Accessing older GData APIs (Spreadsheet API) using OAuth 2 and a service account

旧城冷巷雨未停 提交于 2019-11-28 17:37:48
The short question is whether is this possible and if so, how? Outline I have a .NET application which currently uses a service account to access information across a Google Apps domain using the Google Drive API. This works fine using the google-api-dotnet-client library and code along the same lines as shown in the samples here - which are currently a very good basic example of what I'm doing. What I want to do now is extend it so as well as using those APIs provided by the "new" google-api-dotnet-client library, it uses the older "GData" libraries, as provided for via the older google-gdata

Gmail Task API exist?

女生的网名这么多〃 提交于 2019-11-28 16:18:04
问题 Inside Gmail, there is a small function called "Task". It can allow me to enter a to-do-list. I'm wondering if there is any official / unofficial Google API to access / update the list by Java language? 回答1: The official Google Task API has been released in May 2011 (Well, it's in Labs, but it is official) https://developers.google.com/google-apps/tasks/ Here are the Java specific libraries: https://developers.google.com/api-client-library/java/ 回答2: The official Google Tasks API doesn't

Approach for fixing NoClassDefFoundError? [duplicate]

时光毁灭记忆、已成空白 提交于 2019-11-28 13:36:00
Possible Duplicate: NoClassDefFoundError - Eclipse and Android I'm seeing this question is getting asked a lot in many different contexts. Perhaps we can set some strategies for locating and fixing it? I'm noobish myself so all I can contribute are horror stories and questions, sorry... It seems this is thrown when a class is visible at compile time but not at run time... how can this happen? In my case I am developing an app that uses the Google APIs, in Eclipse, for the Android platform. I've configured the Project Properties / Java Build Path / Libraries to include the gdata .jars and all

Where is the full size image in GData.Photos query?

好久不见. 提交于 2019-11-28 13:00:10
问题 I am querying a Picasa gallery and when I dig into the entries that are returned, I can't find the full size image. I can only see a much smaller, re-sized image ( data[0].Content.AbsoluteUri ). I know Google retains the full size image because I can see it when I view my Picasa gallery online. Where is the full size image? var picasaService = new PicasaService("Gallery"); var photoQuery = new PhotoQuery(PicasaQuery.CreatePicasaUri("GOOGLEUSERNAME", "GALLERYID")); var photoFeed =

NoSuchMethod error getting a gdata service

笑着哭i 提交于 2019-11-28 08:50:17
I get the following error: Exception in thread "main" java.lang.NoSuchMethodError: com.google.common.collect.ImmutableSet.of([Ljava/lang/Object;)Lcom/google/common/collect/ImmutableSet; at com.google.gdata.wireformats.AltFormat$Builder.setAcceptableTypes(AltFormat.java:399) at com.google.gdata.wireformats.AltFormat$Builder.setAcceptableXmlTypes(AltFormat.java:387) at com.google.gdata.wireformats.AltFormat.<clinit>(AltFormat.java:49) at com.google.gdata.client.Service.<clinit>(Service.java:558) at testproject.TestProject.run(TestProject.java:22) at testproject.TestProject.main(TestProject.java