google-plus

Using google plus API is it possible to fetch gmail contacts

断了今生、忘了曾经 提交于 2019-12-30 10:36:07
问题 In my application I want to fetch my gmail contacts. In my app I have already integrated "Google+ API" So i just need to know that can i access my gmail contact by using the same API. Or I need to integrate Gmail API. Please help me I am new to this 回答1: I wouldn't imagine how you would get the contacts from one service by using another? Not everyone in your gmail contacts is going to be on your google+ account, so how would it be possible to get them? There are other ways and it is

Google+ login - Server side flow - Python - Google App Engine

℡╲_俬逩灬. 提交于 2019-12-30 09:39:09
问题 I am building an app on Google App Engine using Flask. I am implementing Google+ login from the server-side flow described in https://developers.google.com/+/web/signin/server-side-flow. Before switching to App Engine, I had a very similar flow working. Perhaps I have introduced an error since then. Or maybe it is an issue with my implementation in App Engine. I believe the url redirected to by the Google login flow should have a GET argument set "gplus_id", however, I am not receiving this

What does the RC_SIGN_IN means in googleplus login

房东的猫 提交于 2019-12-30 07:51:22
问题 I need to add login with google plus button to my app. I followed google's documentation in this Link. But in signin method there is a value called RC_SIGN_IN . I do not know what are the values I should assign to RC_SIGN_IN . 回答1: RC_SIGN in is the request code you will assign for starting the new activity. this can be any number. When the user is done with the subsequent activity and returns, the system calls your activity's onActivityResult() method. and that method will be like :

start google hangouts in android

懵懂的女人 提交于 2019-12-30 06:47:34
问题 I want to start a new hangout conversation with given people, but I can't find any code for it. Is there any easy solution to do this? I tryed to make skype call, and it worked easyly with an intent. Here is the skype code: Intent sky = new Intent("android.intent.action.VIEW"); sky.setData(Uri.parse("skype:" + nickname)); startActivity(sky); I want something similar to this. (Or with skype how can I make a conference call? ) 回答1: There is currently no way to create a Google+ hangout on an

start google hangouts in android

为君一笑 提交于 2019-12-30 06:47:26
问题 I want to start a new hangout conversation with given people, but I can't find any code for it. Is there any easy solution to do this? I tryed to make skype call, and it worked easyly with an intent. Here is the skype code: Intent sky = new Intent("android.intent.action.VIEW"); sky.setData(Uri.parse("skype:" + nickname)); startActivity(sky); I want something similar to this. (Or with skype how can I make a conference call? ) 回答1: There is currently no way to create a Google+ hangout on an

start google hangouts in android

我与影子孤独终老i 提交于 2019-12-30 06:47:12
问题 I want to start a new hangout conversation with given people, but I can't find any code for it. Is there any easy solution to do this? I tryed to make skype call, and it worked easyly with an intent. Here is the skype code: Intent sky = new Intent("android.intent.action.VIEW"); sky.setData(Uri.parse("skype:" + nickname)); startActivity(sky); I want something similar to this. (Or with skype how can I make a conference call? ) 回答1: There is currently no way to create a Google+ hangout on an

Google Plus One Button - How to add a callback?

无人久伴 提交于 2019-12-30 06:12:12
问题 I have the google+ button being rendered on my site as follows: In the JS: var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true; po.src = 'https://apis.google.com/js/plusone.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s); In the html: <g:plusone size="medium" href="https://site.com"></g:plusone> How can I add a callback to this to detect when the user has clicked? I see the docs here: https://developers.google.com/+

accountmanager refresh token(offline access)

纵然是瞬间 提交于 2019-12-30 02:24:08
问题 I use google login through account manager in my android app. I can get accesstoken which I send to server and server can create/login new user. Accesstoken is valid only 3600seconds. Problem is that server can not update user's info after this time expires. Web app requires check user's info periodically. How can I get authentication token and refresh token from android account manager so than server can use refresh token to update data periodically? I don't want use login through webview in

statusCode=DEVELOPER_ERROR in google login

心不动则不痛 提交于 2019-12-29 07:48:17
问题 Below code I am using for Google login.I added google-services.json file in the app folder.I am using classpath 'com.google.gms:google-services:2.0.0 ' in root gradle module.I have checked my package at developer console and its correct and I added SHA1 key which i got by running command keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey -storepass android -keypass android on terminal(i am using ubuntu).I have enable Google+ API.I have created OAuth consent screen

statusCode=DEVELOPER_ERROR in google login

淺唱寂寞╮ 提交于 2019-12-29 07:48:13
问题 Below code I am using for Google login.I added google-services.json file in the app folder.I am using classpath 'com.google.gms:google-services:2.0.0 ' in root gradle module.I have checked my package at developer console and its correct and I added SHA1 key which i got by running command keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey -storepass android -keypass android on terminal(i am using ubuntu).I have enable Google+ API.I have created OAuth consent screen