Questions tagged [google-api-client]

**[DO NOT USE THIS TAG]** Please use the language specifying tag for your question instead of this tag.

Please use the language specifying tag for your question instead of this tag.

Below is the original wiki for this tag.

This is an obsolete tag used for an android sdk that no longer exists.

The GoogleApiClient The main entry point for Google Play services integration

Documentation can be found here.

1581 questions
0
votes
1 answer

GoogleApiClient.ConnectionCallbacks methods not being called after connecting to the GoogleApiClient

I've got some code which is connecting to the GoogleApiClient but onConnected is not being called. public class MainActivity extends Activity implements GoogleApiClient.ConnectionCallbacks, GoogleApiClient.OnConnectionFailedListener { private…
Gruntcakes
  • 37,738
  • 44
  • 184
  • 378
0
votes
1 answer

GeofencingApi addGeofences doesnt receive notification

I've created the registration classes for GeoFencing and an Activity Main to use it. I used a code found on this page: [Android LocationServices.GeofencingApi example usage This is my Activity Main: import android.content.Intent; import…
0
votes
1 answer

occasional client error fullcalendar.js

I am trying to help sort a friend's issue with their fullcalendar.js implementation. The problem thus far is the events not loading consistently. Before uploading it to the Godaddy domain it worked every time but is spotty at best now. I looked at…
BusinessFawn
  • 193
  • 3
  • 8
0
votes
0 answers

Google Apis 3.0 OAuth Token on Windows XP

Using Google Apis 3.0 with .NET Framework 4.0 my application, that works fine under Windows 7 and 8 doesn't create Token file into the specified DataStore Folder Here is the Code line credential = GoogleWebAuthorizationBroker.AuthorizeAsync(sec,…
0
votes
0 answers

Transactions in Google api client (Python)

I need to manage multiple calls to Google api client python services as a single transaction (i.e. creating or updating two folders). Is there any way to do this ?
0
votes
1 answer

GoogleApiClient keeps GPS radio on

I have been working on utilizing the FusedLocationProviderApi in my android application, however whenever I create the GoogleApiClient as follows: mGoogleApiClient = new GoogleApiClient.Builder(context) .addApi(LocationServices.API) …
0
votes
1 answer

Redirect URL for Google API client on AWS ec2 instance?

I am trying to test my Ruby on Rails application authenticating using OAuth2.0 against a Google API, specifically Map Tracks. In my Google Developers Console, I have to specify my redirect URL and it is specified as the following:…
0
votes
0 answers

Exceptions using Oauth2 with Google Calendar API and vb.Net

i'm not able to connect to the google calendar api via oauth2. I've downloaded the *.json file which includes my cliend-id and my cliend secret and use google's code example 'Copyright 2013 Google Inc 'Licensed under the Apache License, Version…
0
votes
3 answers

Access GoogleApiClient instance from wearable listener service failed

I want to access the GoogleApiClient from a WearableListenerService and I got a NullPointerException. The wearable listener service runs in background and listen for wear messages. On wear message reception, the service will for example call a…
nono
  • 1,462
  • 1
  • 13
  • 21
0
votes
1 answer

google enterprise license manager api - Unauthorized operation for the given domain

The LicenseAssignments.get api returns 200 OK Request: GET https://www.googleapis.com/apps/licensing/v1/product/Google-Apps/sku/Google-Apps-For-Business/user/ Response: 200 OK - Show headers - { "kind": "licensing#licenseAssignment", …
0
votes
1 answer

Using Google API service account get all domain users' calendar list

I have a service account created and delegate domain-wide authority. I'm trying to get a list of calendars which each user has access to. some user's email can make the call, some cannot and returns a invalid request error. Can anyone help with…
0
votes
0 answers

How to Show Login Interface based on GoogleApiClient state

As a base I'm using this tutorial https://developers.google.com/+/mobile/android/sign-in -- implemented in an Abstract BaseActivity that is inherited by my application activities. I would like to show a login interface if the user is not logged in. …
activelogic
  • 1,325
  • 3
  • 14
  • 24
0
votes
1 answer

How to use GoogleApiClient's onLocationChanged() when separating activity and client?

I want to get the current GPS coordinates using the GoogleApiClient as the LocationClient is now deprecated. But as I have more than one activity using the client, I don't want to repeatedly write an inner class for each activity. But when I write…
Peder
  • 345
  • 1
  • 4
  • 14
0
votes
2 answers

Google User Provisiong using Google Admin SDK c# -- Google.Apis.Admin.Directory.directory_v1.cs not found

I tried authenticating with Google Admin Api-sdk But We get some file missings error which should be created by the Dlls, we are using. Even after adding all the recommended dlls after going through many article for the same, I din get over to this.…
0
votes
1 answer

Recurrence Rule Error 400 Bad Request - Google Api Calendar

I'm trying to create a recurrence rule with the Google Calendar Api. [JAVASCRIPT - Google Client Library] var req = gapi.client.calendar.events.insert({ [...], "recurrence": [ "RRULE:FREQ=WEEKLY;UNTIL="+date.toISOString() ], [...] …