All Questions
31 questions
0
votes
0
answers
44
views
Login in google page with requests or Oauthlib
Good day, I have a task to fill out and submit data on this site: Click Quality Form using Python code, and I encountered the following issues:
I cannot find which Google API corresponds to this site (...
0
votes
1
answer
169
views
Google OAuth not directing to home page in react
I am setting up a login page using google OAuth in react, I am following a youtube tutorial, everything seems to work fine but somehow after logging in, I am not being redirected to my homepage. here ...
0
votes
0
answers
318
views
go jwt token fromJson invalid memory address or nil pointer dereference
I am trying to access google sheet via service account using google.JWTConfigFromJSON(b, "https://www.googleapis.com/auth/spreadsheets) by a reading a service account json file.
Here's how I am ...
3
votes
1
answer
1k
views
avoid auth token to expire
I want to use the gmail api to update myself about the status of a programm I'm running locally 24/7. Basicly once a day it should send me a status report per email from the emailaccount I created ...
0
votes
1
answer
188
views
Where can I find java sample for generating google API access token via client sdk?
This video mentioned using http get to retrieve google API access token given client id, client secret and refresh token. However, I don't seem to find the corresponding client sdk call documentation, ...
1
vote
2
answers
1k
views
Google API: java.lang.ClassNotFoundException: Didn't find class "sun.misc.Service"
I've imported all necessary google dependencies for authenticate the user:
def play_services_version = "15.0.1"
implementation 'com.google.api-client:google-api-client:1.33.0'
implementation ...
0
votes
1
answer
1k
views
Server-to-server auth for google sheets API
I have a little program running on a bunch of raspberry Pi's that I want to upload values to a google sheet. These things will run headless and without UI. The data is not sensitive. I chose google ...
0
votes
1
answer
2k
views
How to create Google Calendar events on behalf of another user?
I'd like to implement a scheduling application where Person X can create an event at a specific time add it to their Google Calendar. Then Person Y should be able to sign up for that same event and ...
2
votes
1
answer
976
views
R: How to authenticate google drive using access Token from web-based platform
I need to authenticate google drive using the access token without being redirected to the web browser. I tried to authenticate using the code below
drive_auth(token = new_access_token_drive, use_oob =...
0
votes
0
answers
149
views
Making phone number sharing optional in google sign in integration using gapi
I am trying to integrate google SignIn on our webpage, would like to get user phone number while signing in, as an optional property. So that if the user did not want to share their phone number while ...
2
votes
2
answers
3k
views
Unable to access Google Spreadsheets with a service account credentials using Golang
I am writing an AWS Lambda code for accessing and updating a spreadsheet with the URL as input using Golang. So far I am able to access the spreadsheet locally using OAuth Client ID by following the ...
0
votes
1
answer
398
views
How can I verify login using google api, oauth?
I want to use google oauth api to log in to the site which I create.
I use react and node and I'm done with getting current access_token issued but I'm not sure how to know if the user is logged in.
...
0
votes
0
answers
38
views
What is the limit on the number of times you can sign-in, in a given time frame, using Google authentication?
Our product allows customers several different sign-in mechanisms, including Google. I've been writing test automation using Google authentication and have found that after signing in (roughly) 15 ...
0
votes
1
answer
48
views
add more time with google/token, being able to fetch cal events at any time during a day?
Sorry for the long question but I simply wonder: how do I add more time to be able to for example run my app during the whole day and be able to fetch calendar events through google API using oauth2 ...
0
votes
1
answer
39
views
Multiple user tiers Google+ API?
The question is fairly simple, but I've yet to find an answer to it. Is it possible to use Google+ API in an asp.net-mvc web app that requires multiple tiers of users?
For example, this app ...
0
votes
1
answer
2k
views
getPhotoUrl() or profile pic with google login
I'm using Google Api to integrate google login in my Android App.
It works very well, at the moment, and I'm able to retrieve the user name and the email, but I'm not able to retrieve the user profile ...
1
vote
1
answer
218
views
Is it mandatory to validate in my server the ID token with Google Sign in?
I implemented a simple web page where Google Sign In let users enter their Gmail and password in order to authenticate; then I made a simple server with Flask using Google Python API.
Everything is ...
3
votes
1
answer
4k
views
Google oAuth login - How to allow only whitelisted emails to log into my app
I'm creating a web app and decided to use google authentication for its ease of use.
Thing is, I want to only let certain emails login. All other emails should not be able to login!
How do I do that?
...
1
vote
1
answer
1k
views
How do I update my Python Google Sheet API credentials code to avoid package depreciation?
The Google Sheets API Python Quickstart currently uses deprecated packages in its example code, where the use of oauth2client and httplib2 rather than google-auth and google-auth-oauthlib (or maybe ...
1
vote
1
answer
74
views
Why does my Google Login session expire on some pages but not others?
So I am learning how to use Google's Oauth system to allow users to login in with their Google account. I have been using this recourse here: to implement it on my website.
So on my test page when I ...
4
votes
1
answer
1k
views
Enroll new user in 2-Step verification through the Google API
We are using Google API to create new google accounts (users and their emails).
New requirement is that we should support 2-Step authentication enabled in admin.google.com (for sub-organization) and ...
0
votes
0
answers
64
views
Google API Auth without Query Parameters?
I've used the .Net Client Library for Authentication to the Google APIs for a while now, and the standard method to authenticate (which matches the documentation) seems to be using Query Parameters in ...
-1
votes
1
answer
1k
views
How to login with another user when using Google for login?
I am using Google login to authenticate user before they login to my website.
Here is what I am doing.
User comes to my website
Click on login button
Login with Google account
if user pass google ...
2
votes
2
answers
4k
views
Google oauth2 shows approval prompt on every login
The problem is oauth2 login not works properly using https://github.com/golang/oauth2/ library.
Github works great and not shows approval prompt after once I've approved.
But Google oauth2 shows ...
1
vote
1
answer
69
views
Authenticate with Google Python SDK with only auth_token or the refresh_token
I have bunch of gmail.storage files containing a JSON blob with access info for users' accounts. I got these credential sets using PHP to prompt the user to authenticate/authorize my app. I'm able to ...
0
votes
1
answer
67
views
Authenticate to google API
I have a google account, whom has a registered application, and access to it's own drive.
I want to create a server to server application.
My server authenticates to google server and creates a file ...
0
votes
0
answers
148
views
Google Sign in Error from IOS
I get the following error trying to authnticate:
{error : "unauthorized_client"}
I get this error for a small percentage of users. I tested it with two different users on the same device and i was ...
0
votes
1
answer
129
views
Google OAuth - Getting a new access token when the user is actually logged in
I am trying to build something which uses the Google Calendar API. I have been able to authenticate the user using Google's OAuth 2.0 for Login (OpenID Connect). After completing all the steps, I get ...
10
votes
5
answers
8k
views
GoogleAuthException when obtaining an access token with ClientID
For more context, this post follows this one.
To solve my previous problem, I tried to follow the solution presented here by Tim Bray: Verifying Back-End Calls from Android Apps
I declared two ...
0
votes
1
answer
1k
views
Integrate Google authentication into website
I am tasked with integrating Google authentication into our portal system. This will be used for two purposes:
1.) To be able to fetch and integrate a user's calendar, contacts etc into our system.
2.)...
6
votes
1
answer
4k
views
Google ClientLogin authentication
I try make authentication using ClientLogin
URL url = new URL("https://www.google.com/accounts/ClientLogin");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection....