Google APIs use the OAuth 2.0 protocol for authentication and authorization. Google supports common OAuth 2.0 scenarios such as those for web server, installed, and client-side applications.

learn more… | top users | synonyms

0
votes
0answers
4 views

Google Drive API response issue

I have a Vaadin6 application in which I have integrated Google drive so that user can attach his/her google drive item to a form. Previously using oauth 1 every thing was working perfectly, in a json ...
0
votes
0answers
13 views

Google OAuth1 to OAuth2 migration for Google Contacts

Right now the migration snippet looks like require 'rubygems' require 'oauth' consumer = OAuth::Consumer.new(oauth1["consumer_token"], oauth1["consumer_secret"], :site => ...
0
votes
0answers
10 views

AJAX call in Scala Play: Data not transfered

I'm about to implement a Login using Google OAuth. I followed the official Google docs The client does get a token from the Google server. But whenever I try to send it back to my server to store it, ...
0
votes
1answer
14 views

Is Google OAuth a viable solution for this project?

At my company we use Google Apps. I've written a dashboard application (PHP/Laravel) which is used throughout the organization. It has a custom authentication system, but I'd like to integrate it ...
0
votes
1answer
18 views

Using Google API Python client with SignedJwtAssertionCredentials

I am trying to get a list of users from Google using google_api_python_client-1.4.0. I getting the access_denied error even through I have domain wide delegation authority. Interesting thing is ...
0
votes
1answer
13 views

Use to Chrome Store Publishing API with OAuth2 Service Account

I try to update a chrome app programmatically by using the Chrome Web Store Publishing API. I need to use a server to server authentication method and therefor created an oauth2 service account on ...
0
votes
0answers
16 views

Flask - Python - Can't connect using G+ [on hold]

Im doing a simple web with Flask-Python. Im following a course to connect G+, this is my function inside project.py #Create anti-forgery state token @app.route('/login') def showLogin(): state = ...
5
votes
1answer
52 views

When will be OAuth 2.0 shutdown?

Google is shutting down OAuth 1.0 on 20 April 2015. My project was previously using oauth 1.0, So I have updated code and used OAuth 2.0 Now I want to know when OAuth 2.0 will be shutdown. I came ...
1
vote
1answer
21 views

Google Identity Toolkit: Link multiple accounts?

I am looking for an "auth as a service" provider for my website that can let my users sign up using google/facebook and/or their own username/password. Trouble is, I am not able to find out if Google ...
0
votes
0answers
15 views

Why do I get a Error 500(Server Error) page when adding 'max_age' parameter to Google Oauth 2.0 URL?

The 'max_auth_age' doesn't work for me in a few days ago but it worked before. I find that OIDC has a 'Authentication Request' parameter named 'max_age', and the description fits what I need - ...
0
votes
1answer
46 views

Switching from username/password to OAuth 2 in Java application using Google Directory API

I do the following in a java application to authenticate my client and multi-client. AppsForYourDomainClient client = null; ProvisioningApiMultiDomainSampleClient multiClient = null; try { ...
1
vote
1answer
35 views

google-endpoints cross client authentication

I'm trying to use cross client authentication with google-endpoins. In my android client I'm successfully getting the authorization token for my server using: String plusLogin = Scopes.PLUS_LOGIN; ...
1
vote
1answer
56 views

Using Google oAuth between applications which the same user is authenticated into?

I have run into some challenges when using oAuth, and I would appriciate some expert advice! The challenge is as follows: Scenario 1. User A uses two seperate & external web applications (App X ...
-1
votes
1answer
44 views

Error while trying to implement oAuth with Google in vb.net

I am trying to implement Login with Google into my web based application developed in vb.net. I am using VS2013 with Telerik controls. Unfortunately, there is no useful example available for vb.net ...
2
votes
1answer
30 views

Apache Oltu Spring Security OAuth2 and Google Integration

The reference being purely taken from following sites:- http://syntx.io/integrating-your-java-spring-mvc-webapp-with-facebook-doing-the-oauth-dance/ ...
0
votes
0answers
14 views

Fill Desktop app credentials with Web based token from Google API

I'm doing some web based app that shows user calendar from database entries. In this web app user can authenticate it's Google Calendar account, through JavaScript library. Then I want to share this ...
0
votes
1answer
26 views

OAuth2 Troubles with PicasaWeb API

I have spent the last couple of nights bashing my head against the wall amongst a see of conflicting out of date documentation and semi-helpful blog posts that were/are appropriate to what I am trying ...
0
votes
1answer
51 views

Google API PHP Client - Choosing the right Scopes

From the Google documentation, there is an example that references a variable named $scopes: $scopes = array('https://www.googleapis.com/auth/sqlservice.admin'); This is for sqlservice. I want to ...
0
votes
2answers
62 views

Limit access to Google App Engine Endpoints

What I'd like to do is limit access to my service endpoints to only the web app deployed on Google App Engine, so, access from only some-app-id.appspot.com and the domain mapped to it, ...
0
votes
0answers
31 views

Contacts API Authentification migration - None activity in the Console

We are in the process to migrate our Contacts API from the ClientLogin authentification to the OAuth 2.0 authentification. We are able to get the Authentification token, to delete or to add contacts ...
1
vote
0answers
47 views

Google OAuth2 Authentication giving error “Unknown error VerifyAuthentication”

I am using FoxNetSoft.ExAuthSocial Plugin for Google OAuth2 External Authentication. Its redirecting to gmail page properly but after login through gmail login for website is not happening ...
0
votes
0answers
17 views

OAUTH 2 not working on “standalone” HTML5 app vrs web app

I have a web app eg www.webapp.com that uses Google's OAUTH2 (gapi.authorize) (OAUTH2) to sign in users. It works from the desktop and mobile devices as long as I use the browser to navigate to the ...
0
votes
1answer
32 views

How to revoke Oauth token by using Google's Javascript APIs?

In my (client-side AngularJS) web application I use Google API's Oauth to let the user sign-in gapi.auth.authorize({ client_id: clientId, scope: scopes, ...
-1
votes
2answers
39 views

What should i set as PageToken value when using Google Apps API Explorer?

We are trying to receive information about customers, all we get is 20 results, would like to search next page as well. Should loop through all pages until null, but can't create a loop when using the ...
0
votes
0answers
28 views

fHow to correctly authenticate Google OAuth using a service account and p12 file

I'm trying to authenticate google analytics to pull some analytics data I use the following method to authorize and get the credential private static Credential authorize() throws Exception { ...
1
vote
1answer
34 views

Google Developer Console - Consent Screen - Custom Product Logo Doesn't Work

In the Google Developer Console, Consent Screen, under Product Logo I added the URL to an image that's 120 x 120 px size in png format but the preview shows a broken link icon in the upper left corner ...
0
votes
0answers
32 views

Using Google OAuth 2.0, can you see whether Gmail is actually available?

In my app, I am accessing Google Mail using the OAuth 2.0 IMAP scope. Everything works fine, but apparently Google Apps admins can turn off Gmail completely (which for example happens for ...
1
vote
1answer
35 views

Google Drive Permissions

I work for an un-launched startup that handles a large amount of user media. We are looking to integrate Google Drive as a way for a user to store that media. Is it possible to have read/write access ...
1
vote
1answer
36 views

AuthSub April 15 Deprecation

I understand AuthSub will be completely deprecated/unsupported April 15th. Years ago I created a Google Analytics API App and initially supported AuthSub for authorization (not authentication). But ...
0
votes
2answers
133 views

Making requests to Google API using Guzzle and Socialite in Laravel 5

I'm building a web app that has to interact with Google Contacts API and retrieve the Contact List of the authenticated user, but I'm getting ClientException in RequestException.php line 89: Client ...
1
vote
3answers
119 views

How to validate a user using OAuth2

I have an application and various users registered to this application. I am registering user to my application using Google service. When user tries to log in, I am validating the user using OAuth1 ...
0
votes
1answer
43 views

Google Task Queue auth from service account vs installed app credentials

Summary: Using installed (native) application credentials, I am able to authorize and use a pull task queue -- using OAuth2 and the REST API v1beta2. This is OK, but I would prefer to authorize and ...
0
votes
1answer
29 views

Write to a Google spreadsheet from JavaScript using the Public API access (no OAuth)

I'd like to allow a user to visit one of my sites, enter some information into a field, and then save that information into a Google Spreadsheet via JavaScript. I don't want the user to login via ...
0
votes
0answers
14 views

Google Oauth 2.0 scope assignment doesnt work in mobile browser

I am not getting any errors, but when I authenticate in a mobile browser (tested on modern versions ios and android) the authentication permissions Google asks me to confirm are only those of the ...
0
votes
0answers
18 views

iOS app exits after Google signin

My app worked fine in development straight from the computer to the device. When using Testflight/other deployment services, I was able to sign into my Google account (required for the app's ...
1
vote
1answer
31 views

Google Endpoints with iOS Client : User has to sign in every time

I'm developing an iOS Application that uses Google Endpoints API. In order to authorise the requests, the user must sign in with his Gmail account on the first screen. I've managed to get this to work ...
0
votes
0answers
112 views

Google+ Android: sign in failed

I have created my app in google api console, then I activated Google+ API and created client id(oAuth). But after this my android app worked incorrectly and I have deleted it from google api console, ...
0
votes
2answers
33 views

Setting User.Identity.Name when logging via Google OAuth2

I'm working on a small MVC5 website that makes use of Google authentication however I wanted to do it without the ASP.NET Identity. I have so far followed the steps in this blog post and have a ...
0
votes
0answers
17 views

Logging Analytics API

I wrote an application that downloads data from Analytics API. I didn’t have problem with login I used the OAuth 2.0 on my first computer, the problem is that now I’ve changed to my laptop, the ...
1
vote
1answer
44 views

Feature or bug in the google url shortener depending on authentication method

If one calls the insert method while passing an api key on the request, then passing in a url like http://mostmedia.com/recent-projects always returns the same shortened url. But if you authenticate ...
0
votes
0answers
42 views

google api php - save and retrieve access token

this is my php file: <? require_once("config.php"); require_once("vendor/autoload.php"); session_start(); getAuthorizationUrl(); function getAuthorizationUrl(){ $client = new ...
0
votes
1answer
76 views

Will deprecated Google Sign-In scopes stop working?

Looks like Google has deprecated the following scopes: https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/userinfo.email When will they completely stop working?
0
votes
0answers
20 views

Maven artifacts for Oltu OpenID Connect?

What Maven artifacts should I be including to use the org.apache.oltu.openidconnect ?
0
votes
1answer
57 views

How do I retrieve OpenID 2.0 identifier (openid_id) when using Apache Oltu with Google OpenID Connect

How do I retrieve OpenID 2.0 identifier (openid_id) when using Apache Oltu with Google OpenID Connect. Here is the authorization request I am using: OAuthClientRequest oltu_request = ...
0
votes
0answers
29 views

Google API Python Client - 401 Invalid Credentials - Google Drive

I use a Google service account to access users of an organization using directory API and then use drive API to perform certain file operations on users. It works fine for few users and for others, ...
0
votes
1answer
33 views

GET Request, google picasa API

I have been trying to get public albums from google's web albums API for Picasa. I am able to successfully get an access token, but when I send it from my server to google I get an "Token invalid - ...
0
votes
0answers
32 views

jwt verify always returns 'jwt malformed'

I am working on an android app that uses google+ OAuth2 for authentication and a node js backend/API that needs to be secured. I have decided to use google+ tokens and by sending them along with each ...
0
votes
1answer
81 views

Google openid different when openid2.0 login to google-plus login?

Currently I log users in with google using OpenID2.0 and I store the user's openID in the db table in the User model. After upgrading to google-plus signin I obviously need to match up my existing ...
1
vote
0answers
52 views

How to check google access token date expires or not

I want to check whether the accesstoken in my db is expired or not. I'm working with meteor framework and when I login it is saving in my db as following "expiresAt" : ...
1
vote
1answer
27 views

Google Login error with django-social-auth

I'd created a django project for sign in with google using django-social-auth. I'd followed the doc and created an app in google developer console with "OAuth 2.0" and added API's of Gmail API, ...