google-login

Scope email issue on google login codeigniter

China☆狼群 提交于 2019-12-13 03:39:50
问题 I have created google login using CodeIgniter which is working fine it takes me on login page when I click on Google image after filling up all details when I click on next button then it takes me out from google login to my website and URL look likes https://example.com/google_login?code=4/lQDGQ6sJog3ZrLKGJtn-VVD3rbzgJl16jMLUrk6wzBIbsu-F6mjlLuPOepeobDLmFYqQL25jo4iAgI9ZnVKTSVY&scope=email%20profile%20https://www.googleapis.com/auth/userinfo.email%20https://www.googleapis.com/auth/userinfo

Mobile App GetIdentityAsync no value

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-13 01:42:46
问题 I have this code from Azure Services Mobile App, API custom controller. The result always the same "1:1". I test with all identity providers, google, facebook, twitter, and Microsoft Account, except AD. I think the problem is the call to GetIdentityAsync. Can anyone help me? Thanks [HttpGet] public async Task<string> GetIdentityInfo() { var user = (MobileAppUser)this.User; string str = ""; string Provider = "YES", UserId = "NO"; try { if (user != null) { Provider = "1"; UserId = "1"; var

Android - Google Login and Play Services version incomptablity

橙三吉。 提交于 2019-12-13 00:37:30
问题 I'm having a weird issue with Google Login and Google Play services. I followed the instructions here https://developers.google.com/identity/sign-in/android/start-integrating and added 'com.google.gms:google-services:1.5.0-beta2' to my build.gradle file. I then added these play services libraries that we need for our app in the app's gradle file: compile 'com.google.android.gms:play-services-location:8.4.0' compile 'com.google.android.gms:play-services-maps:8.4.0' compile 'com.google.android

Programmatic Google Signin/Signout User1 then Signin User2 (Python)

只谈情不闲聊 提交于 2019-12-12 21:09:52
问题 I'm working on a DIY project to retrieve Google location history for multiple members of my household. With direction from StackOverflow member @t.m.adam, I came to realize that the signon process is quite involved (understatement). I am not using OAuth or 2FA at this point. Perhaps I'll graduate, but baby steps first. I have the signin and cookie retrieval part, and the KML retrieval part working great. I was able to adapt the code in this project (google-login - github.com/tubaman/google

Google Log in Issue in published website but fine in dev mode

时光毁灭记忆、已成空白 提交于 2019-12-12 04:28:07
问题 I am working on one of the log in form in ASP.Net MVC 5. And the google login is not working properly. When I run the project as localhost I am able to redirect to the google's log in page. But when I publish the website I get error as Error: redirect_uri_mismatch . I am new to all this please guide me. below is code snippet. var ClientID = "*************"; var url = "https://accounts.google.com/o/oauth2/auth?"; var parameters = "response_type=code&client_id=".concat(ClientID).concat("

android:google login api and facebook log in api cannot use in app apk

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-12 03:52:26
问题 I link this 2 log in api with my app and it is already done in debug mode(connect my phone with my computer and press run). When I build apk and put it to my phone and run , it doesn't work like in debug mode. It alerts that 1. windows excption index out of bound 2. hash key doesn't match (google result error code: 10) I think the first problem isn't the true problem. I think the second is the problem so I go to see the SHA-1 on my computer. It's a match with SHA-1 in developergoogle. I run

Google and Twitter return empty user data on Flask

我们两清 提交于 2019-12-12 02:28:43
问题 I don't understand what is wrong? callback uri: google - http://127.0.0.1:5000/auth/google/ twitter - http://127.0.0.1:5000/auth/tw/ config: from authomatic.providers import oauth2, oauth1 SECRET_KEY = '####' AUTH_CONFIG = { 'google': { 'class_': oauth2.Google, 'consumer_key': '####', 'consumer_secret': ####', 'scope': ['email',], }, 'tw': { 'class_': oauth1.Twitter, 'consumer_key': '####', 'consumer_secret': '####', }, } controller: from authomatic.adapters import WerkzeugAdapter from

Getting exception while login using Google Plus in Android

独自空忆成欢 提交于 2019-12-11 20:13:40
问题 I am trying to login using Google Plus in Android. When I am pressing Google Plus button, it is giving me the profile which need to be choosen. After choose the google plus account, onConnected() method is getting called. Then I am trying fetch the user data. But I am getting the exception saying Error requesting visible circles: Status{statusCode=NETWORK_ERROR, resolution=null} Here is my complete code which I have written: public class LoginActivity extends AppCompatActivity implements View

Facing Issue While Integrating Google Login Button With Java Application

我是研究僧i 提交于 2019-12-11 19:57:57
问题 I am working on Hybris Technology. It is nothing but the Java only. So I am trying to Integrate Google Login Button with my Java Application. I am following this tutorial. Here is my code What I am doing Front Part -- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"> </script> <script type="text/javascript"> (function () { var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true; po.src = 'https://plus.google.com/js/client:plusone.js

chrome.identity not showing all the logged in google account on popup

烈酒焚心 提交于 2019-12-11 16:44:11
问题 I am building an chrome extension in which I used chrome.identity.getAuthToken({ interactive: true }, function(token) { if (chrome.runtime.lastError) { alert(chrome.runtime.lastError.message); return; } var x = new XMLHttpRequest(); x.open('GET', 'https://www.googleapis.com/oauth2/v1/userinfo?alt=json&access_token=' + token); x.onload = function() { alert(x.response); }; x.send(); }); on background.js for google login authentication. When this function called, a window appear which show