7 questions
0
votes
1
answer
71
views
Request to create a note in Google Keep returns invalid argument
I'm trying to create notes in Google Keep using API, here is the python script:
import sys
from google.oauth2.service_account import Credentials
from googleapiclient.discovery import build
from ...
1
vote
0
answers
112
views
Error 400: invalid_scope for Google Keep API with OAuth 2.0
I am encountering an error while trying to use the Google Keep API in my application. When I attempt to authenticate and access the API with the scope https://www.googleapis.com/auth/keep, I receive ...
0
votes
1
answer
264
views
Python retrieve Google Keep data of personal account
I'd like to build an app that interacts with my Google keep data (edit, add, delete).
I have created a new Google Cloud project and enabled the Google Keep API as well as created a new service account ...
0
votes
1
answer
242
views
java.lang.IllegalStateException error when I am using a more updated version of the needed library
I am trying to call the methods to modify Google Keep in my Android application project. Right now I just want to make the builder work that can handle the tasks.
Dependencies:
implementation("...
-2
votes
1
answer
602
views
How can I use gkeepapi to retrieve and print out the labels associated with my Google Keep notes?
Background
I am using gkeepapi to get the labels of my Google Keep notes:
import gkeepapi
keep = gkeepapi.Keep()
keep.login('[email protected]', 'password')
labels = keep.labels()
I want to read the ...
2
votes
0
answers
708
views
Getting HttpError 400 "Request contains an invalid argument" when accessing Google Keep Api
I am trying to create a note via a python script, but keep getting this error. If I knew which argument was invalid I could fix it, but this is a very vague error message. My script uses a service ...
3
votes
3
answers
3k
views
Google keep api responds with invalid scope when using documented scopes
Above the issue
I am trying to fetch access token to read data from my own google account using vb.net window forms application . Am I missing anything?
Why should it open web browser for ...