Google implementation of the OAuth 2.0 protocol.

learn more… | top users | synonyms

0
votes
0answers
14 views

Include “hd” paramater in Google oauth for iOS

I'm using Google oauth to restrict access to my web service that serves to iOS, so I've implemented the Google oauth sdk as shown, but I'd like to limit the users allowed to those with emails ...
0
votes
1answer
7 views

CAS OAuth Integrating Using Google

I have configured CAS 3.5.2 server to have OAuth Client support, I have successfully done authentication using Facebook now I want to extend it to have Google support as well, I am doing the same ...
0
votes
0answers
26 views

Google Coordinate OAth2 with Service Account

I have a C# console application with Google Coordinate .Net library and Service Account open authentication. private const string SERVICE_ACCOUNT_EMAIL = "XXX@developer.gserviceaccount.com"; private ...
0
votes
1answer
22 views

Passing variables from AngularJS service to controller with Google API?

I'm trying to use the Google API Javascript client to utilize Google Login on my app, and then access the user's email address and contacts. I'm combining this with AngularJS, and I've read that it's ...
0
votes
0answers
20 views

Unable to get Authorization Code with Google+ Sign-in for Android: INVALID_SCOPE

I am trying to retrieve an authorization code to use in my server side following these instructions. The client ID of the server shares the same project of my Android Client ID. I can retrieve the ...
0
votes
1answer
13 views

Getting invalid_client response while creating token request

I am following the documentation provided by google to access gmail using API. According to the google documentation we need access token to manage gmail. So I tried to create an access token by ...
0
votes
1answer
27 views

invalid_client in google oauth2

I try to make a web page for youtube video upload, therefore I try to get the client id from google api console, and in the api console it shows something like this: Client ID: ...
1
vote
1answer
19 views

android application directly login using saved account credential in android device

I want, When i install my app which is directly login using saved gmail credential which is stored in Setting->accounts and sync.How it is possible it has any good tutorial. Please help me. Thanks in ...
1
vote
1answer
23 views

How to stop Google+ Sign-In Button from popping up the message “Welcome back, you've already connected with this app via Google+ Sign-In as …”

I'm adding Google+ sign in button to my site using the server-side flow. Here is how I render the sign in button: <script type="text/javascript"> (function () { var po = ...
0
votes
1answer
28 views

call GAPPS script service from AppEngine as authenticated user

I have implemented a templating/document generation via Google Appsscript (at least a proof of concept). I can publish this GAPSS script as a web service and I can call give service from GAE. This is ...
0
votes
1answer
31 views

Prevent Google OAuth 2.0 redirection for Google Drive API Integration

I'm trying to implement Google Drive API. They have quick start example here which is using Google OAuth 2.0. Using for a web application where user will use drive api for creating folder and save ...
0
votes
0answers
26 views

how to retrieve user information using google oauth2.0 [closed]

I found code here, but I'm not getting how to use this code to retrieve user information. Even I tried this and using this I have come up with this, ...
0
votes
1answer
65 views

Get OAuth access token to Drive API for AppEngine from an Android application

What I want to achieved: Get the access token to access the Google Drive API from an AppEngine application, from the user Android smartphone. I have an Android application and a GAE server with ...
1
vote
0answers
24 views

Google Reader Subscriptions With OAuth2

I'm trying to get my subscription list through OAuth2 from Google Reader. I'm using Codeigniter and a library - CI_OPAUTH. I can get the permissions scren with no problems and give Google Reader ...
0
votes
0answers
34 views

There is a / in my OAuth2 access token in php

Okay, here is my issue: In my Google OAuth2 Access token there is a / This may not seem like a big deal, but when doing the callback I get a lot of issues. eg: callback.php?code=lfjhl/djbj (that ...
0
votes
1answer
49 views

Google Analytics API - Retrieve refresh token with OAuth2 & ASP.NET

I'm trying to set up offline access for a Google Analytics API application using OAuth2 and I'm using ASP.NET to POST my authorization code in exchange for a refresh token but I can't get a response ...
0
votes
1answer
34 views

OAuth flow with refresh tokens. Error 500

I am making a PHP application, that will use a single google drive account. So as an administrator i first give permission to google drive account. When permissions are accepted, i save the refresh ...
-1
votes
0answers
86 views

Google OAuth2 down? [closed]

Since this morning we are catching Deadline exceptions when using the Google OAuth2 API. As mentioned here, these errors are more and more common on the App Engine but this morning the API seems to ...
0
votes
2answers
41 views

Logout link with return URL (OAuth)

My application is integrated with Facebook, Google and Microsoft (using OAuth). To logout from facebook I'm using the following URL: ...
0
votes
1answer
51 views

How do I get gmail contacts using javascript

How do I get gmail contacts using javascript. Aka What is the AJAX call that I should make? I already have the user OAuth Token which I got because the user signed up to my site using google. I have ...
0
votes
1answer
16 views

I want to authenticate an admin using OAuth2 and access data for accounts that are under this admin

I want to authenticate an admin using OAuth2 and access data for accounts that are under this admin. Primarily something like this, I have an organisation : A --> B, C, D where A is the admin. If i ...
1
vote
2answers
81 views

Why is Google Calendar API (oauth2) responding with 'Insufficient Permission'?

I'm doing a get request to the following URL (with {id} replaced with the id from the web interface): https://www.googleapis.com/calendar/v3/calendars/{id} A few assertions: The Authorize header ...
0
votes
1answer
21 views

Google Oauth for private networking

I am trying to implement google oauth 2.0 as authentication method for my django website. For developing purpose, I was working on localhost, which is just fine. Now my website need to be moved to ...
0
votes
1answer
38 views

GoogleOAuth2 Auth Failure “unauthorized_client”/ Python GoogleAdWord API

Iam trying to accsess OAuth2 in Python (the code is the same as ...
0
votes
1answer
36 views

Google Shortener with oauth 2.0 2-legged

I am blocked in the creation of my mobile App. I want to be able to use google shortener and his analytics feature in my app, the problem is that I want use the 2-legged Oauth2.0 and I haven't ...
0
votes
1answer
55 views

Google OAuth2: When and how to use refresh token

I have an installed c# app with code working that gets the authorization code and exchanges it for an access token. I am storing off the refresh token. I know at some point I need to use it to get a ...
1
vote
1answer
47 views

Getting invalid_grant when trying to refresh token

When an OAuth2Credential object tries to refresh its access_token, sometimes it gets an error of invalid_grant and then it becomes unable to be refreshed. The code I used is based on Google's python ...
0
votes
1answer
24 views

Google OAUTH2 - how to detect user is already logged in

I'm using Google OAUTH2 for my website. I can successfully login using the google authentication. Here is what I want to do is: 1) user goes to website homepage and user signs in by clicking "sign in ...
0
votes
0answers
58 views

restify with passport redirect loop

I am creating attempting to create a restful api with restify and passport. I am trying to authenticate users, via passport, then eventually give out an access token. I am following what i found here ...
0
votes
1answer
28 views

python google ouath authentication decode and verify id_token

Well, I am trying to implement google oauth authentication with my django project. I follow the guide here: https://developers.google.com/accounts/docs/OAuth2Login?hl=de-DE I have got the response ...
0
votes
1answer
84 views

How to fetch access token in Google AppEngine (OAuth 2.0) using java

I am getting exception for accessing token Socket java.lang.RuntimeException: com.google.apphosting.api.ApiProxy$FeatureNotEnabledException: Is there any solution to post the request (code) for ...
-5
votes
0answers
28 views

PHP:How to get google header authorisation token via php [closed]

I am trying to simulate google+ button via php.I came across the below line in http header.how this is generated ? any idea ? is this access token ? if so how can i generate via php.and what is ...
0
votes
1answer
45 views

Embed a map from Google Maps Engine

A friend of mine has a Google Maps Engine account where he loads up map data which he want's to share with users. These maps are private (ie you need to log in to view them). I've made a system using ...
0
votes
0answers
40 views

API Console data corrupted. Cannot recreate Client ID for a particular package and production key

API Console data seems to be corrupted for my account. I cannot recreate the Client ID for package com.clc.mmm.free and my production key. The error I am getting is "This client ID is globally unique ...
0
votes
1answer
58 views

Access YouTube API without client_Secret

I am trying to use the YouTube Analytics API in an android app I'm writing but I'm stuck. All of Google's documentation I've read says that I am required to use the client_secret when querying ...
-1
votes
0answers
24 views

NoLinkedYouTubeAccount trying to connect googleplus page manager

OAuth dialog flow 1. Select Account I select my email Select Account (again) I am given a choice of my email again and I googleplus page i manage. I choose the manager account. Then i Get ...
0
votes
1answer
45 views

Using OAuth2 to access YouTube api in Android

I am working on an app that is supposed to go out and grab analytics data from a users YouTube account. I am able to retrieve the authorization code from Google using the below url inside a webview in ...
1
vote
1answer
21 views

Silverlight OOB and Google OAuth 2.0

I have silverlight oob application and need to add Google OAuth 2.0 I'm using this article as reference: I tried to use WebBrowser Control to send request to Google Auth Service. Code sample is ...
0
votes
1answer
21 views

Google API Service Account and nodejs

I want to be able to programmatically update a Youtube playlist using nodejs. In theory, this is possible using the Google API and jsonc. As I want to do this without user interaction I have been ...
0
votes
1answer
25 views

google OAuth 2.0 particular domain

With Google OAuth 2.0, is that possible to filter the users by their domain? I basically understand the google Oauth 2.0. It can provide authentication and authorization which is great. However, with ...
-4
votes
0answers
15 views

Unreadable page using google oauth2 on Windows 7 Hebrew [closed]

The next url displays unreadable hebrew text: ...
0
votes
2answers
87 views

Non-interactive OAuth for YouTube API Uploads

I would like to use the YouTube API to upload videos to a corporate account in a non-interactive program. I was trying to achieve upload without prompting for authentication and authorization (since ...
0
votes
1answer
25 views

Error when attempting to authenticate a user using the Google Contacts API

I came across this problem with a company's intranet that we run (powered by Wordpress) - it's got us all stumped. When attempting to authenticate a user using the Google Contacts API, an error is ...
-1
votes
0answers
12 views

Getting error when try to append multipart/alternative mime type mails via Google API [closed]

i am try to append the mail via Google API using Zend framework. When append a normal messages its works fine. But i try to append the messages that have the multipart/alternative mime type mails ...
0
votes
1answer
112 views

Android - Oauth2 - Server-side access for your app

I've been having problems implementing Google Play Services login on my android app and passing the authorisation code to my backend server, so the server will exchange the code for access token and ...
0
votes
1answer
27 views

google-oauth-java-client - Force access token default lifetime

I'm wondering if it's possible to change the default lifetime (3600) ? In fact, i'm trying to solve an issue and i want to check if the issue is due to an expired access token.. Else, is it possible ...
1
vote
1answer
34 views

OAuth sample app crashes with verifyerror

I am trying to run the sample auth that comes bundled in the play services extras with the android sdk. However, it keeps on crashing no matter what I try. 05-27 22:52:15.985: ...
0
votes
1answer
49 views

404 errors when accessing https://www.googleapis.com/oauth2/v2/userinfo

We're sometimes see 404 errors when accessing https://www.googleapis.com/oauth2/v2/userinfo?alt=json in our application. apiclient.errors.HttpError: <HttpError 404 when requesting ...
1
vote
1answer
81 views

Firefox OS OAuth 2.0 procedure

I'm currently building an app in javascript for the new Firefox OS and am stuck on how to implement Google Drive API via OAuth v2. The app is probably on http://localhost and ...
12
votes
2answers
264 views

Welcome back, you've already connected with this app via Google+ Sign-In as *

I'm working with Google App Engine using python and OAuth2.0 (Google Accounts, not Google+) as log in medium into my application, and it has been fine for the last half year and working good, now ...

1 2 3 4 5 7