Questions tagged [google-tasks-api]

The Google Tasks API provides developers with a powerful set of API endpoints for searching, reading, and updating Google Tasks content and metadata.

The home page for the API can be found here.

The API reference is here.

187 questions
1
vote
1 answer

Google task integration in android application

I am trying to integrate google task in android to store and retrieve task from google task, it is my first experience working on google task does any one of you have integrated google task or know way to do it ...
Zubair Akber
  • 2,760
  • 13
  • 30
1
vote
1 answer

Google Tasks - insert task from webpage

I'm trying to add a new task from my website to the Google Tasks. I checked the Google Tasks Api docs, and this is the code what I figured out:
Mandino
  • 13
  • 6
1
vote
0 answers

Google Tasks service object for a User who is already authenticated with oAuth2 (Grails/Java)

I am trying to get a Google Tasks service object which has authorised Credentials in order that we can pull Tasks for a user who has already registered and logged-in (oAuth2) with our Web Application via Google Apps Marketplace. Unfortunately I am…
stevenm
  • 173
  • 1
  • 8
1
vote
3 answers

Understanding the meaning of this c# code

I'm trying to understand the following code: flow = new GoogleAuthorizationCodeFlow(new GoogleAuthorizationCodeFlow.Initializer { DataStore = new FileDataStore("Tasks.ASP.NET.Sample.Store"), ClientSecretsStream = stream, Scopes =…
Johann
  • 27,536
  • 39
  • 165
  • 279
1
vote
1 answer

Google Tasks API from Android - Access Not Configured

I believe this is a common problem. Even this documentation points it out: http://samples.google-api-java-client.googlecode.com/hg/tasks-android-sample/instructions.html I have created a project for my Android app here:…
gruszczy
  • 40,948
  • 31
  • 128
  • 181
1
vote
0 answers

Google task api with basic authentication

I am using following code but it's giving 401 unauthorized.I need the solution to be fully automated(no user intervention after start) so I have to use basic authentication meaning no outh. import…
vishesh
  • 2,007
  • 6
  • 32
  • 67
1
vote
1 answer

Adding tasks from script

I'm not able to create tasks from script. Neither of the below are working. var newlist = Tasks.newTaskList().setTitle("This tasklist is created from script"); var newTask = Tasks.newTask().setTitle("This task has been created from script"); I'm new…
Dawn
  • 13
  • 3
1
vote
2 answers

Authorize and access Google Tasks API from Android app?

I'm trying to add support for Google Tasks to my app -- specifically, the app should be able to add a new tasks. I've spent most of this week trying to accomplish this without success. Specifically, I've not managed to get my app fully authorized to…
Dave Feldman
  • 104
  • 1
  • 9
  • 28
1
vote
0 answers

Error: redirect_uri_mismatch

when i try to access google calendar or tasks api from my application in PRD it throws the following error: The redirect URI in the request: http://MyApp.com/ManageEvents.aspx did not match a registered redirect URI Learn more Request…
1
vote
2 answers

Google task API authentication issue ruby

I am having the problem to authenticate a user for google tasks. At first it authenticates the user and do things perfect. But in the second trip it throws an error. Signet::AuthorizationError - Authorization failed. Server message: { "error" :…
1
vote
1 answer

How does Task->setLink work?

On the Google Tasks API website > Reference > Tasks > (https://developers.google.com/google-apps/tasks/v1/reference/tasks) scroll down to 'Resource Representations'. It looks like I can add a link to my tasks (like Gmail does when you set an email…
REJH
  • 3,273
  • 5
  • 31
  • 56
1
vote
2 answers

What's the best workflow to authenticate a Google Account in my Android App?

I'm trying to follow this this example: http://code.google.com/p/google-api-java-client/source/browse/tasks-android-sample/src/main/java/com/google/api/services/samples/tasks/android/TasksSample.java?repo=samples. My code is a bit bad-written, but…
Xisberto
  • 125
  • 3
  • 12
0
votes
1 answer

Google Tasks API recent version still has daily limit restriction on usage or calls?

It looks like, in earlier Task API releases, we had a restriction on the API call usage with a daily limit. Is that now removed and made unlimited as how our Contacts and Calendars API are? Please someone confirm on this or, still we have the daily…
AK0
  • 13
  • 5
0
votes
1 answer

AsynTask - onPostExecute is called before doInBackground

i got a problem getting my AsyncTask to work correct. My App offers the possibility to connect with your Google Account and add and receive tasks by using the Tasks API. When the users wants to synchronize with his account, the doInBackground()…
vein
  • 313
  • 5
  • 16
0
votes
0 answers

Is there a method to know the taskList ID from a google space?

I´m working on a Google Apps Script project within the google spaces REST API, google sheets, google tasks and others. The thing is that i create a google space from a SpreadSheet in google sheets making use of the REST API methods of google's…