Questions tagged [google-data-api]

Services at Google provide external access to data and functionality through APIs. Google Data APIs is a set of APIs provided for consuming data from Google services.

Services at Google provide external access to data and functionality through APIs. Google Data APIs is a set of APIs provided for consuming data from Google services.

More info

265 questions
9
votes
1 answer

Programmatically change gmail status via OAuth or Authsub

I would like my application to programmatically update my user's gmail/google talk status on their behalf but I dont want to store their password because of the privacy risk Does anyone know if/how it is possible to use Oauth or some other form of…
Aneto
  • 115
  • 1
  • 7
8
votes
1 answer

Google Analytics 4 Data API use order by

I started using Google Analytics 4 Data API and downloaded the PHP library to create the requests. I have been playing a little and my request is working good so far, but when I need to sort it I don't know exactly how to pass that data, I have been…
7
votes
3 answers

Ruby on Rails 3 and Google Book Search

I'm trying to get started using the Google Data API for Google Book Search in my Ruby on Rails 3 application, and I don't even understand how to get started. What gems do I need? What do I need to do in order to do something simple like searching…
Andrew
  • 227,796
  • 193
  • 515
  • 708
7
votes
1 answer

How do I access google photos from my node js app?

I am writing an app to access a user's images on Google Photos. It seems that there is no 'official' API for Google Photos, however the images can be accessed via the Picasa Web Albums API. There are no official Google Picasa Web Albums API…
phelm
  • 71
  • 1
  • 4
7
votes
2 answers

How to refresh a client-side Google api access token?

I am using the client-side flow described here: Client-side (JavaScript) applications. All goes well until the access_token expires. then I get 401/403 responses. What do I need to do? I have tried gapi.auth.authorize and gapi.auth.getToken, but…
7
votes
2 answers

How to get long-lived access token Google API

In the Google documentation it says // Once the user authorizes with Google, the request token can be exchanged // for a long-lived access token. If you are building a browser-based // application, you should parse the incoming request token from…
Nikola Sivkov
  • 2,812
  • 3
  • 37
  • 63
6
votes
1 answer

Google Docs API - Impersonate User File Download

Using the Google Docs Java API with a Google Apps account, is it possible to impersonate a user and download a file? When I run the program below, it is clearly logging on to the domain and impersonating the user because it retrieves the details of…
6
votes
2 answers

Using the OAuth Access Token from django-social-auth with Google data api (calendar)

I'm trying to use the OAuth Token I get from django-social-auth to access the users calendars. So in the django-social-auth configuration I set: GOOGLE_CONSUMER_KEY = 'anonymous' GOOGLE_CONSUMER_SECRET = 'anonymous' GOOGLE_OAUTH_EXTRA_SCOPE =…
Kai
  • 2,205
  • 3
  • 32
  • 43
6
votes
2 answers

Google Data API on Symbian

I want to use Google Data API on a Symbian device with pys60 but I couldn't find any doc. Is there any way to install Google Data APIs Python Client Library on Symbian ?
brsata
  • 81
  • 6
6
votes
2 answers

As Google Data List APIs has been deprecated, then which api to use for Google sites?

As Google Data List APIs has been deprecated by Google, so we can use "Google Drive APIs" for Google Drive but what about Google Sites? I am currently using Google.Gdata.client.dll reference to work with Google Sites.
5
votes
1 answer

How to download Google SpreadSheets using C#?

I'm able to login to google with my application with the following code which I found from web. It is returning an Authorization Code as response. Google help says that this auth code should be used to send future POST/GET requests. I need to…
Clair Vengs
5
votes
1 answer

single google account authtoken for Multiple Google Data API in Android

Hello android enthusiast, i'm struggling to find solution to this problem. I'm planning to access the user's Google Calendar and Google Documents,(using google-api-java-client-v1.6.0). I can access the user's Google account through AccountManager…
Ben
  • 59
  • 3
5
votes
1 answer

Why isn't google api client library built on top of Apache's Abdera framework?

First of all I want to give many thanks to Google GData API's engineers for their good work and I'd like to mention that this question is not meant to criticize anything. It just pointing out things. Could anybody please explain that to me? As far…
lisak
  • 21,611
  • 40
  • 152
  • 243
5
votes
4 answers

Gdata JavaScript Authsub continues redirect

I am using the JavaScript Google Data API and having issues getting the AuthSub script to work correctly. This is my script currently: google.load('gdata', '1'); function getCookie(c_name){ if(document.cookie.length>0){ …
Krustal
  • 518
  • 1
  • 4
  • 12
5
votes
1 answer

Google Contacts API - failing to refresh access token

We use Google Contacts API with OAuth2: credential = new GoogleCredential.Builder().setTransport(new NetHttpTransport()) .setJsonFactory(new JacksonFactory()) .setClientSecrets(OAuth2ClientId(), OAuth2ClientSecret()) …
Alexey
  • 556
  • 1
  • 5
  • 18
1
2
3
17 18