google-plus

Is it necessary to use google apps account to use Google+ Domain API's?

房东的猫 提交于 2019-12-12 04:56:44
问题 I am trying to get user's circle info with following api call xhr.open("GET", "https://www.googleapis.com/plusDomains/v1/people/me/circles?alt=json&access_token=" + googleAuth.getAccessToken()); It gives response text as {"error":{"errors":[{"domain":"global","reason":"forbidden","message":"Forbidden"}],"code":403,"message":"Forbidden"}} I have enable google+ domain api 回答1: Correct, Google+ Domains API methods are not available to @gmail.com Google accounts. They require Google Apps accounts

Create Google Plus Events via API

时光怂恿深爱的人放手 提交于 2019-12-12 04:33:17
问题 Is there a possibility to create events for Google Plus Communities via an API? The only related post I could find is this one: Is there an API for the Google Plus Events but it only considers requesting events. 回答1: No, the G+ API is currently read-only. Note : The Google+ API currently provides read-only access to public data. All API calls require either an OAuth 2.0 token or an API key. Cheers 来源: https://stackoverflow.com/questions/13772944/create-google-plus-events-via-api

What mechanism to use with YouTube access in Android.

安稳与你 提交于 2019-12-12 04:13:15
问题 I am trying to implement a simple mechanism to authenticate the user so that through my app he can interact with YouTube. But there are several points in which I am confused about, following is a list of the same: 1) What login mechanism to use? I have implemented G+ sign in however the docs here are very confusing: a) https://developers.google.com/youtube/v3/guides/authentication?hl=de This link asks me to use an O - Auth 2 authentication, however b)https://developers.google.com/accounts

Google+ insert moment with nodejs client

久未见 提交于 2019-12-12 04:06:43
问题 Has anyone been able to get the google-api-nodejs-client to successfully insert a moment? Whatever I try, I get a generic 400 "Invalid value" error but am unable to narrow down the invalid value because the API Explorer doesn't work either. Would it be because of the missing data-requestvisibleactions parameter? I'm using passport.js's require('passport-google-oauth').OAuth2Strategy for handling oauth access, and that part is working fine, but I have no idea how to incorporate

google plus login not working after put a play store in android

↘锁芯ラ 提交于 2019-12-12 03:59:48
问题 I have created google plus signed Apk and after put a play store.Then download the application google plus login not working in android.How to solve this problem 回答1: Probably your production key and debug key difference, make sure you put both keys in your google-json file and both keys in console.google google+plus api correctly, use gradle build to get the SHA and MD5 correctly 来源: https://stackoverflow.com/questions/44946528/google-plus-login-not-working-after-put-a-play-store-in-android

Google Plus share URL not showing featured image, title and description few days ago

你说的曾经没有我的故事 提交于 2019-12-12 03:45:48
问题 I have URL: http://www.racunalo.com/homtom-ht3-pro-s-posebnom-maskom-i-cijenom-za-majcin-dan-u-prodaji-na-lightintheboxu/ The source code is O.K. The data is valid for Google Rich Snippets and so Twitter and Open Graph. The problem is that if I share the above URL on Google Plus (via share button or manual) the featured image, title and description are not showing up. The problem occured few days ago. We did not chancged the code. It just happend as it was similar problem with Facebook Open

Google+ deep linking

梦想与她 提交于 2019-12-12 03:32:28
问题 The docs here https://developers.google.com/+/mobile/android/share/deep-link seem to be hopelessly out of date, as I cannot find any of the mentioned (like "Edit settings"). Can somebody provide some guidance on how to make a deep link to my app work from within a Google+ post? e.g., I would expect a link such as "appname://?id=12345678" to be a clickable thing that directs the user either to install the app or opens the installed app and takes the user directly to the content specified by

How does Google Plus Oauth callback function work?

风格不统一 提交于 2019-12-12 03:22:12
问题 In Google+ JS documentation, it says that if a callback function parameter is specified, Google will call that function when auth flow completes. How would that work? i.e. how does javascript in parent window get access child window (Google Oauth)'s state? 回答1: Javascript children windows can call functions in their parent windows. Let's say you specify the function signinCallback(authResult) , then the auth window can call parent.signinCallback(authResult) to pass authResult to your main

Fetch Google plus contacts in Rails app

好久不见. 提交于 2019-12-12 02:58:04
问题 I have google login feature implemented in my Rails app and now the scenario is to fetch google plus contacts in my app. There is one Google Plus gem available but i am not sure whether i can fullfill my requirements using that gem. Whats the best possible solution to this. Regards, Karan 回答1: You can use the Google APIs Ruby Client and do something like: client = Google::APIClient.new plus = client.discovered_api('plus') # Code to authorize the client. ... result = client.execute(plus.people

Can I publicly share my Google+ API keys?

孤街醉人 提交于 2019-12-12 02:25:08
问题 I am developing an application with Google plus. Hence I need an API key. I have generated the key in API console. Now using that key I am going to access some data from Google+ using JavaScript in JSON. But in this method my API key will be publicly visible. Is it OK to share it? Some information I got from here https://developers.google.com/console/help/#UsingKeys 回答1: Having API Keys public for client-side applications can't be avoided. To make sure no other people can (ab)use your API Key