google-account

What features are supported by Android's Google accounts authenticator?

本秂侑毒 提交于 2019-12-19 16:52:15
问题 The API documentation for the hasFeatures method of Android's AccountManager has the following to say about which features are supported by each authenticator: Account features are authenticator-specific string tokens identifying boolean account properties. For example, features are used to tell whether Google accounts have a particular service (such as Google Calendar or Google Talk) enabled. The feature names and their meanings are published somewhere associated with the authenticator in

How can an application server associate Google accounts to a user's device?

二次信任 提交于 2019-12-19 04:05:43
问题 I want users to be able to enter data from a web server and/or native PC app and transfer it to their chosen Android device in much the same way that Google Play's install on device works. I'd like to use the user's Google account authentication to establish a link between the application server and the user's Android device that registered with GCM. I couldn't find any mention of how to handle this kind of authentication in the Google Cloud messaging API documentation, but did find this

Using Google account to log in to an Android Application

纵饮孤独 提交于 2019-12-17 06:24:49
问题 I’m developing an application on Android and I want to allow users to log in with their Google account. How can I achieve this? 回答1: You might want to authenticate the user using one of the google account already configured in your device like some of the apps do, for that follow the below link - "Authenticating to OAuth2 Services" - http://developer.android.com/training/id-auth/authenticate.html Download Sample from Google - Android SDK Manager/Extras/Google Play Services In simple steps it

Android: user ID account (not ID phone)

百般思念 提交于 2019-12-13 04:10:18
问题 I have an app that save the user image but i would save with each image also user id. The user can change telephone device but the google account is always the same. I need a code string that identify the user and not the phone. Maybe a numeric id, not necessarily google account email. I have this code but is wrong (return device id and not user id) TelephonyManager tm = (TelephonyManager) getSystemService(TELEPHONY_SERVICE); telephoneCode = tm.getDeviceId(); or String code=Settings.Secure

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

How to get list of my places from Google Maps programmatically?

谁说我不能喝 提交于 2019-12-12 07:38:20
问题 I am making a web app which is using Google Maps API v3. I want to display some places on the map which are stored on the user's Google account's "My Places" section on Google Maps. I know that google Maps API support KML and I can download KML from Google Maps My Places. But I want to do this programmatically. Example: A user comes to my website, log in using his/her Google credentials and they can see the list of their saved places. After clicking on one of them, that place will appear on

List emails of clients accounts on Google Apps

扶醉桌前 提交于 2019-12-12 03:14:42
问题 You will have to excuse my confusion here... Basically, we have clients with hosted accounts and I need to somehow get a list of emails per domain name. Say, test.com is a Google hosted account and that it uses Google's email service for admin@test.com , and several more, how can I find (programmaticaly) this complete list of emails? I've looked around for a while and it only brought more confusion. I think my question relates to this Google API document. While I'm usually armed with at least

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

How to forcefully remove Google default selected Account in Gmail API?

杀马特。学长 韩版系。学妹 提交于 2019-12-11 14:46:23
问题 I am trying to remove default selected account from gmail api when logout from app in android. this is GoogleAccountCredential function to establish connection of gmail account. GoogleAccountCredential mCredential = GoogleAccountCredential.usingOAuth2( getApplicationContext(), Arrays.asList(AppController.SCOPES)) .setBackOff(new ExponentialBackOff()); 回答1: Gmail API doesn't Provide And default account select method you can just call this method to select account when required

Remove publish application from google play store [duplicate]

喜欢而已 提交于 2019-12-11 07:41:30
问题 This question already has answers here : Lost my keystore for uploaded app on android market [duplicate] (2 answers) Closed 6 years ago . I published application and by mistake I uploaded old apk and unfortunately I have also lost my old key store. So console is not accepting new apk with new key store. Now if unpublish app,then can I publish app again with same name and package or not. What better I could do with this problem..? Or I need to change everything from application name to package