google-plus

Get Google Plus cover URL by user_id

主宰稳场 提交于 2019-12-24 15:09:04
问题 Is there a way to get the profile picture for a google+ account by using an URL ? I know that we can get the photo by doing something like: https://plus.google.com/s2/photos/profile/1234567890?sz=200 and I need something similar to get the profile cover photo. 回答1: It depends on the URL you have, if you have the user's Google+ ID, you can then retrieve their profile, which contains a link to their profile. An example: Api Explorer Demo of Retrieving a Cover Photo Set the fields value to cover

How do I get the likes number from facebook for a given url?

喜你入骨 提交于 2019-12-24 14:15:15
问题 A url http://www.cnn.com/2014/03/15/world/asia/malaysia-airlines-passenger-vignettes/index.html?hpt=hp_t1 How can I get the facebook like number or twitter posts number or google+ number from this url? 回答1: You can use the following FQL via the Graph API: select url, like_count from link_stat where url='http://edition.cnn.com/2014/03/15/world/asia/malaysia-airlines-passenger-vignettes/index.html' like this: https://graph.facebook.com/fql?q=select%20url%2C%20like_count%20from%20link_stat

Pulling out user details from Google Plus by email address

和自甴很熟 提交于 2019-12-24 14:02:46
问题 I'm having trouble in pulling out user details from Google Plus account simply by searching for specific email address. I use https://developers.google.com/+/api/latest/people/search#try-it but when providing email address I always get empty result. Been searching for a while and after reading google groups I think this is not possible at the moment. Could someone clarify if this is the case or there is a way to pull out user photo simply by searching for specific email address? 回答1: You can

How to test Google Plus account existance

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-24 12:51:40
问题 I am building a website where a user could specify his social accounts links, I am trying to find a way to test if a google plus account actually exists (social account validation). I've seen that it is actually possible to test using the GET people/userId but what about curtom urls ? For example if a user has a google.com/+JohnDoe , how would you figure it out? I didn't find anything in the google docs. 回答1: It's the same API. GET people/userId and GET people/+JohnDoe both work. 回答2: i think

Can I use Google Plus sign in to authenticate my OAuth methods in app engine?

こ雲淡風輕ζ 提交于 2019-12-24 12:21:03
问题 I successfully implemented Google Account sign in using the tutorial here for Android: https://developers.google.com/appengine/docs/java/endpoints/getstarted/clients/android/add_auth_code This allows my app to successfully use endpoints in app engine while authenticated. However now I'd like to perform some Google Plus functionality, ie: obtain some info about the user. I followed the code for the G+ signin as below: https://developers.google.com/+/mobile/android/getting-started#step_4

Android Google Plus SDK: progress indicator (ProgressBar) never stops after click on +1 button

血红的双手。 提交于 2019-12-24 12:20:01
问题 I implemented the +1 button in my Android app. Almost everything works fine: I can log in /log out when I am logged in, the +1 button tells what is the number of +1 and becomes red/white in compliance with the fact that I did or not a +1 on my webpage BUT....when I click on the +1 button, an activity indicator (progress indicator (ProgressBar)) appears on my +1 button (which becomes white) and it never stops rotating ! The window to cancel/share/make a +1 never appears... Note that I have

Sharing interactive posts from Google+ on Google Drive?

时光总嘲笑我的痴心妄想 提交于 2019-12-24 09:15:20
问题 I'm using the interactive post feature from Google+, but it's being blocked Claimed origin not in whitelist: https://googledrive.com Unsafe JavaScript attempt to access frame with URL My Google APIs Console is using the URL from the website as JavaScript origin, all there looks right. https://developers.google.com/+/features/interactive-posts Thanks. 回答1: Google Drive is available from multiple origins, you might be missing some of these possibilities from your APIs Console project, for

Google Plus PHP api - Insert Moments not working

佐手、 提交于 2019-12-24 07:10:05
问题 I want to share my status to google plus. I followed the google api, but i am getting the unauthorized error. I am trying to fix it for more then 2 days, but i could't.. i read this answer, i download and test the api, still not working for me. 401 Unauthorized access when posting Google+ Moments with PHP Client You can check here, https://code.google.com/p/google-api-php-client/source/browse/trunk/examples/moments/simple.php In this trunk file, still they are calling the Google

How to get Google Plus Notifications count?

霸气de小男生 提交于 2019-12-24 03:31:33
问题 I'm developing a Google Chrome extension and I want to retrieve Google+ notifications count for current user, in a script running in the background. Is it possible? I studied the Google+ APIs at https://developers.google.com/+/api/ but it seems not supported yet. How is it possible to retrieve the count value anyway? I tried with a (cross-domain permitted) AJAX request, but the notification value seems generated at runtime, in JavaScript. 回答1: You're correct that there's no way to access the

Login using Gmail credentials

旧街凉风 提交于 2019-12-24 03:27:48
问题 Is there a way I can use Google credentials to get basic user info like Email, Name, Gender and use them in my application? Its like allowing user to login into my application using Gmail. I asked the same here. But the answer says: You should not use Gmail for user authentication using Google accounts. You can use Google + Sign-in for Android instead. This will allow you to access the user's profile information upon getting the required permissions using OAuth. Check out the guide here: