Questions tagged [google-openid]

Third-party websites and applications can now let visitors sign in using their Google user accounts. Federated Login, based on the OpenID standard, frees users from having to set up separate login accounts for different web sites and frees web site developers from the task of implementing login authentication measures.

Third-party websites and applications can now let visitors sign in using their Google user accounts. Federated Login, based on the OpenID standard, frees users from having to set up separate login accounts for different web sites and frees web site developers from the task of implementing login authentication measures.

OpenID achieves this goal by providing a framework in which users can establish an account with an OpenID provider, such as Google, and use that account to sign into any web site that accepts OpenIDs. This page describes how to integrate Google's Federated Login for a web site or application.

Google supports the OpenID 2.0 protocol, providing authentication support as an OpenID provider. On request from a third-party site, Google authenticates users who are signing in with an existing Google account, and returns to the third-party site an identifier that the site can use to recognize the user. This identifier is consistent, enabling the third-party site to recognize the user across multiple sessions. Google also supports the following extensions:

457 questions
0
votes
1 answer

Will it still be possible to delegate OpenID authentication despite OpenID 2.0 being deprecated?

This is really a follow-up question to this one, for which only Stack Exchange specific answers were provided. I set up delegation of authentication to Google, based on this SO answer, specifically because I wanted to be able to swap out…
MrCranky
  • 1,498
  • 24
  • 32
0
votes
1 answer

OpenID2 for Google accounts is going away, rails and omniauth

I can't seem to find anything about migrating away from openid for omniauth users? Is this as simple as changing the redirect url? require "openid/store/filesystem" require "omniauth-google-oauth2" config.omniauth :google_apps, store:…
trueinViso
  • 1,354
  • 3
  • 18
  • 30
0
votes
1 answer

What about the Users Python API?

Add me to the list of people confused by all this: https://developers.google.com/accounts/docs/OpenID#openid-connect. I currently use the Python Users API in an AppEngine application running at https://www.stackmonkey.com/. I build the login URL…
kordless
  • 111
  • 1
0
votes
1 answer

Is this correct way to add the openid_shutdown_ack to the request

I have extend the getMessage of AuthRequest in consumer.AuthRequest This is the object i get. I removed the values before the added openid_shutdown_ack parameter , 'openid_shutdown_ack'):…
user1120753
  • 639
  • 6
  • 14
0
votes
1 answer

Google OpenID Connect conformance

I'm trying to use the oic library to authenticate with Google OpenID Connect, and get an error oic.exception.IssuerMismatch: 'https://accounts.google.com' != 'accounts.google.com' when running from oic.oic.consumer import…
Martin v. Löwis
  • 124,830
  • 17
  • 198
  • 235
0
votes
1 answer

Verifying Back-End Calls from Android Apps with OpenID Connect

Based on this blog article I managed to validate a Android App client token for a Google account on the back-end side, using the Google OAuth2 API and the example Checker class in the article. I noticed that GoogleIdToken.Payload#getIssuee() is…
mjn
  • 36,362
  • 28
  • 176
  • 378
0
votes
1 answer

Adding Google+ Sign In to AngularJS app

I'm trying to figure how to properly implement Google+ Sign In (https://developers.google.com/+/web/signin/) in my AngularJS app to secure the REST API that it depends on. I have 2 components to my application: the AngularJS app and a Python Flask…
meteoritepanama
  • 6,092
  • 14
  • 42
  • 55
0
votes
1 answer

GOOGLE id - PHP use

I am trying using Google-ID by PHP code. Some clarifications: I looked at the sample on https://developers.google.com/+/web/signin/server-side-flow I don't understand the example on steps 2+7 (is it twig? I don't know twig, and don't have one). Step…
Eitan
  • 1,286
  • 2
  • 16
  • 55
0
votes
1 answer

How to get logged in user when user is authenticated using Google Openid connect?

Im using Goolge openid connect for authenticating user in my application since openid 2.0 is deprecated by google. When i make Google openid connect request, i get access token from which i get user details and save the user email in application…
0
votes
1 answer

Directory API Tokens API issue

I am very new to ADMIN SDK. In that there is Directory API in which i am interested in Tokens api which give me 3rd Party API access for domain user. I am referring following link Directory API - Tokens after following there instruction i just tried…
0
votes
1 answer

Authenticating a user using Google

I'm having a hard time wrapping my head around how to authenticate a user in my REST service. I plan to use Google Sign-in (on Android, namely). I can't quite figure out how to authenticate users on my server. I do not want to have any…
Nepoxx
  • 4,849
  • 5
  • 42
  • 61
0
votes
1 answer

OpenID-Connect, Google+ iOS SDK, no browser

It seems this used to be possible, but not anymore. Here's my dilemma: I'm creating an iPad educational software app, and I want to let students log in with their Google Apps for Education accounts using OpenID-Connect. ... I guess my first question…
Colin
  • 3,670
  • 1
  • 25
  • 36
0
votes
0 answers

Google analytics API feed

I have been using a simple auth connect to retrieve analytics data from various profiles within my account using the main username and password as credentials. This has worked well until now and locally (on my MAMP server) the method still works.…
Eth
  • 240
  • 1
  • 3
  • 10
0
votes
1 answer

Migrating Google OpenID to OpenID Connect for google apps domain OpenIDs

I'm migrating from Google OpenID to OpenID Connect and needing to get back the OpenID of the logged in user's OpenID when logging in to Google using OpenID Connect. As spepcified in google documentation, I pass the openid.realm parameter that…
user1452215
  • 620
  • 5
  • 16
0
votes
1 answer

Google OAuth Log In Problems In MVC 4 Application

I am facing the same issue as mentioned in AuthenticationResult.IsSuccessful started returning false for google I am using MVC 4 Web Api application and migrating it to MVC 5 would be a big change. Is somebody else facing the same issue ? Are there…