google-authentication

Google Apps Script personal script won't authorize

筅森魡賤 提交于 2019-12-14 03:46:35
问题 I've previously had google apps scripts using the UrlFetchApp no problem. Yesterday I've created a new one and I can't run any functions whatsoever if I include the UrlFetchApp object - even if it's commented out! When I try to run the script I get the usual "permissions" pop up. But when I give my consent I get "Sign in with Google temporarily disabled for this app This app has not yet been verified by Google in order to use Google Sign in." ... This is personal script and Im the only person

Did ClientLogin API shut down?

旧时模样 提交于 2019-12-14 00:42:04
问题 We have managed SNS service for Samsung mobile(feature phone, camera). We are facging issues regarding ClientLogin API . When we request ClientLogin and then we receive response: 404 Error . This API was only a few hours before the operation. We can't upgrade to OAuth2, because of the device firmware update is not possible. Is there remains to be still available? The formats of request and response are as follows ####################### REQUEST ####################### POST /accounts

YouTube API live broadcast

爷,独闯天下 提交于 2019-12-13 17:02:50
问题 I am trying to embed a live event video on my customer site using API. I am trying to retrieve the list of public livestream videos using youtube.liveBroadcasts.list. It is working on the API Explorer query builder. When I copy the request to the browser I am getting a login required error. { "error": { "errors": [ { "domain": "global", "reason": "required", "message": "Login Required", "locationType": "header", "location": "Authorization" } ], "code": 401, "message": "Login Required" } } The

Node.JS verify Google Authentication token

陌路散爱 提交于 2019-12-13 16:14:45
问题 I am trying to build a Node.JS REST server using the Express.JS framework that integrates Google authentication for mobile applications. The Node.JS version used is 0.12.7. I am having a problem when verifying the Google token received from the application, as it seems that the module I am trying to load returns an error. The module used to verify this token is passport-google-token. The code used to initialize this module and check the token is as follows: index.js file 'use strict'; import

google oauth2 authentication error

萝らか妹 提交于 2019-12-13 12:54:47
问题 I am trying to build an android app to insert and retrieve events from google calendar using Google calendar API. `GoogleAccountCredential mCredential; mCredential = GoogleAccountCredential.usingOAuth2( getApplicationContext(), Arrays.asList(SCOPES)) .setBackOff(new ExponentialBackOff());` whenever I try to access the API it gives me the error UNREGISTERED_ON_API_CONSOLE. I have followed the steps on calendar API Page to register API key on developer console 来源: https://stackoverflow.com

POST Request not supported by Google Server

北战南征 提交于 2019-12-13 05:32:25
问题 I am getting following error while posting request from my server to google.com: Warning: file_get_contents(http://accounts.google.com): failed to open stream: HTTP request failed! HTTP/1.0 405 Method Not Allowed in C:\...\index.php on line 23 My code is following: $postdata = http_build_query( array( 'code' => '####', 'client_id' => '####', 'client_secret' => '####', 'grant_type' => 'authorization_code' ) ); $opts = array( 'http' => array( 'method' => 'POST', 'header' => 'Content-type:

How to create a Google Authentication for iOS in UE?

二次信任 提交于 2019-12-13 04:08:07
问题 I am developing a mobile app for my school with Unreal Engine. I am using C++ (looking for free viable compilers). For said app, I need to create user accounts, and my CS teacher wants me to use Google to authenticate accounts. Due to the very limited amount of data on said integration is available online, I was unable to find any resources. How do I add a "connect Google account" function to my app? Thank you. This is for an iOS mobile application that allows the FBLA presidents to manage

GoogleAuthUtil cannot be resolved

六眼飞鱼酱① 提交于 2019-12-12 20:23:12
问题 I am using Google Play Service's Authorization with GoogleAuthUtil in my Android applcation. I did this part about 2 months back, its been working perfectly fine then onwards. Yesterday, I updated the SDK. Now I am getting this error in my application. It says "GoogleAuthUtil cannot be resolved". Has anything changed in the updated SDK? How can I solve this? I am importing the following: import com.google.android.gms.auth.GoogleAuthException; import com.google.android.gms.auth.GoogleAuthUtil;

OAuth2ErrorException invalid_token when verifying token on GoogleAuthUtil.getToken() Google+ on server

自作多情 提交于 2019-12-12 14:48:17
问题 First time using the Google+ API. I have an application with a web and Android client that uses G+ for authentication. Web client is working nicely. I have a "Client ID for web application" set up in the Google API console, which I use to fetch a token with a javascript client. The javascript client uses the following button (taken basically verbatim from a Google demo app): <button class="g-signin" data-scope="https://www.googleapis.com/auth/plus.login" data-requestvisibleactions="http:/

Error: Google id_token is not allowed to be used with this application. Firebase access fails after it was working

断了今生、忘了曾经 提交于 2019-12-12 08:12:48
问题 I'm using Google SignIn and then authenticate on Firebase using signInWithCredential , passing the Google credentials. I followed all the procedures, and everything was working! And suddenly it stops working. I went to a previous working code and it still fails. So it seems something happened with the database configuration. In Firebase DB I already checked: DB is up and running. As a fact I can read when not logged (as I have defined by rules) Sign-in method for Google is still ENABLED My