google-plus

Is there already a Google+ API? [closed]

拟墨画扇 提交于 2019-12-17 03:26:31
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . I would like to know if there is already a Google+ API available to the developers. I have not yet found something? The API is now here available: https://developers.google.com/+/ 回答1: https://services.google.com/fb/forms/plusdevelopers/ This is the link to sign up for Google+ API access. 回答2: The official

Google Plus Authentication [closed]

倾然丶 夕夏残阳落幕 提交于 2019-12-16 18:06:09
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 6 years ago . Can someone teach me please how to begin with authenticating user in Google Plus with OATH2 and grabbing their ACCESS_TOKEN from the resulting request? Or it will be better if I can have some examples of it. I really madly need it now guys. Any help is highly appreciated. Thanks

Sending JSON data to Google Plus

≯℡__Kan透↙ 提交于 2019-12-16 18:05:13
问题 I'm trying to send a JSON object and an associated thumbnail to Google+. But I'm having trouble getting it to work. I get, for instance, the response: 05-30 22:38:16.819: E/AndroidRuntime(11643): FATAL EXCEPTION: main 05-30 22:38:16.819: E/AndroidRuntime(11643): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.SEND typ=application/json flg=0x80000 pkg=com.google.android.apps.plus (has extras) } 05-30 22:38:16.819: E/AndroidRuntime(11643

“immediate_failed” - Could not automatially log in the user

对着背影说爱祢 提交于 2019-12-14 03:57:04
问题 I have a problem when I developed my website with Google+ sign-in: I did step by step that the doc told me but I always failed at step4: https://developers.google.com/+/web/signin/ the result was always ""immediate_failed" - Could not automatially log in the user", I just don't kown why, can anyone help me, thanks very much! :-( 回答1: Note that in the sample code you pointed to, the "immediate_failed" check is commented out. This is intentional, since the first time a user encounters the Sign

Not able to get access token for google+ through Oauth 2.0 in iPhone application

不问归期 提交于 2019-12-14 03:56:58
问题 I am trying to access Google+ APIs with Oauth 2.0 in iPhone Application. For this purpose I am using OauthConsumer library. I got the unauthorized request_token and also authorization code but not able to exchange that request_token for access_token using authorization code. I am getting error as "invalid_request". Below is the code snippet, am I doing anything wrong or missing any parameter? Code: -(void)getAccessTokenWithAuthorizationCode:(NSString *)code { NSURL *accessTokenURL = [NSURL

Service Version update required? [duplicate]

折月煮酒 提交于 2019-12-14 01:25:44
问题 This question already has answers here : Google Play Services update (6 answers) Closed 4 years ago . I am working on Xamarin Android Application.I am getting ConnectionResult{statusCode=SERVICE_VERSION_UPDATE_REQUIRED, resolution=null, message=null when I try to log in through Google plus in my application.What does this mean? How can I solve this? 回答1: This message indicates that you need to update Google Play Servcies: The message from ConnectionResult The installed version of Google Play

Google Plus Share Button is not sharing on Business Page

拟墨画扇 提交于 2019-12-14 01:17:12
问题 Suppose I have an online shopping system and many users are registered to it. I want a feature that when I add a new product or there's a promotion for a particular product, my Google plus page gets updated in the sense that the details of the product are published there automatically. It will only be used for back-office purpose. The problem is that I cannot share on the Business Page, it gets posted on my user profile. How can I achieve posting on google plus page via a web application? 回答1

How does Google Plus cache login information on iOS?

无人久伴 提交于 2019-12-13 17:13:44
问题 I done with login any getting user profile with google plus. When I Logout from my app without calling GoolePlus signOut with in App [[GPPSignIn sharedInstance]signOut]; Now user goes to GooglePlus App and explicitly logOut from app or clear all safari history and cookies And user login in with another account in GooglePlus. Now when I again logIn in myApp with GoolePlus I am getting previous account information not new one. Here is my code- [GPPSignIn sharedInstance].clientID =

Unable to access Google Plus API in browser

三世轮回 提交于 2019-12-13 16:27:41
问题 i am working on to display wall posts (Stream) data using Google Plus API. i have valid Client ID + API_KEY. I am able to get response from Google Plus cloud console.i.e. by executing method I get Something like Request GET https://www.googleapis.com/plus/v1/people/myuserid/activities/public?maxResults=5&key={YOUR_API_KEY} X-JavaScript-User-Agent: Google APIs Explorer Response 200 OK Show headers - { "kind": "plus#activityFeed", "etag": "\"Mwea3qudNDf-hWWlPWi3n-YrU1Q/ovxXa0lmTRbwzkDa9o

403 error / Forbidden when accessing https://www.googleapis.com/auth/plus.profiles.read in python

混江龙づ霸主 提交于 2019-12-13 16:12:36
问题 I am getting an "HttpError 403' when I try to access an user profile. I followed the tutorial and setup all the rights in the Central Panel. Here is the code: import httplib2 import pprint from apiclient.discovery import build from oauth2client.client import SignedJwtAssertionCredentials SERVICE_ACCOUNT_EMAIL = 'xxxx@developer.gserviceaccount.com' SERVICE_ACCOUNT_PKCS12_FILE_PATH = '/xxxx/privatekey.pem' USER_EMAIL = 'xyz@test.com' SCOPES = ['https://www.googleapis.com/auth/plus.profiles.read