google-plus

Socialite Google redirect_uri_mismatch

走远了吗. 提交于 2019-12-11 03:25:54
问题 I am trying to login with google using socialite , my facebook login works fine so the problem in my google app, any help!!! 'google' => [ 'client_id' => 'app-key', 'client_secret' => 'app-secret', 'redirect' => 'http://www.shoptizer.com/callback/google', ], 回答1: I found this link https://blog.damirmiladinov.com/laravel/laravel-5.2-socialite-google-login.html From this tutorial: Occasionally it happens that google require some time to apply client configuration If you get an error message

Google+ app showing wrong pictures when sharing through Android

北慕城南 提交于 2019-12-11 02:49:30
问题 I have programmatically added Google+ sharing to my app. I have a set of photos that I include with my posts and share with the following code: private void shareToGooglePlus() { // Launch the Google+ share dialog with attribution to your app. PlusShare.Builder share = new PlusShare.Builder(this); for (String imageFilename : imageList) { Uri imageUri = Uri.fromFile(new File(imageFilename)); share.addStream(imageUri); } share.setText("My images"); share.setType("image/jpeg");

Get photos from a Google+ album, in JSON format

依然范特西╮ 提交于 2019-12-11 02:21:17
问题 Based in this post: Google Plus Album Urls How I can get the response in JSON format, directly from the Google servers? (that means: without parse the xml and convert to JSON from my server). 回答1: As you've noticed, you need to use the Picasa Web Albums API for now, until they get around to a Google+ API. Picasa Web Albums API uses the older Google Data Protocol, which was designed around XML. You can have Google's servers convert the XML to JSON by providing an ?alt=json parameter to the URL

How can auto post to google plus in PHP?

假如想象 提交于 2019-12-11 01:12:46
问题 I find article about Post on Google Plus on https://developers.google.com/+/api/latest/moments/insert From that we find example shows how to create moment. $moment_body = new Google_Moment(); $moment_body->setType("http://schemas.google.com/AddActivity"); $item_scope = new Google_ItemScope(); $item_scope->setId("target-id-1"); $item_scope->setType("http://schemas.google.com/AddActivity"); $item_scope->setName("The Google+ Platform"); $item_scope->setDescription("A page that describes just how

How to check user has liked(+1) google+ button on website or url?

…衆ロ難τιáo~ 提交于 2019-12-10 22:45:56
问题 How to get like status of google+ button on website or url? I am using PHP. 回答1: Unfortunately this isn't quite possible. Neither the REST API nor the PlusOne button itselfs provides a method to check whether a user has +1'd the page or not. Furthermore, if you're using PHP, the user would have to authenticate himself first (using OAuth), so that's probably not what you want, anyway. What you can do, however, is using Javascript to catch actions of the current visitor. You can specify a

Not automatically login to Google+ using UIWebView (iOS)?

China☆狼群 提交于 2019-12-10 22:23:41
问题 I have a question about authentication with UIWebView. I want to login in webview in plus.google.co I sign in in google plus one time as shown in https://developers.google.com/+/mobile/ios/sign-in When user go to google+ page again in UIWebView then program should be automatically logged in and save the user's session. But in fact it is not keep logged in.How can i keep user logged in for google+ although user is one time sign in for Google+ in my application. I also checked condition for

How to migrate from Google+ Login to Google Sign In in c# MVC

徘徊边缘 提交于 2019-12-10 22:22:15
问题 My web site allows users to register and log in with their Google Account. My c# MVC app uses the feature the template offered using Microsoft.AspNet.Identity.Owin. I have received an email from Google that they are shutting down Google+. The email said to transfer over to Google Sign In. Any good articles that explain this topic for c# MVC apps using Owin features? Any pointers where to start would be greatly appreciated. thanks, Michael 回答1: Just update the package Microsoft.Owin.Security

Exported Google+ photos, how do I convert JSON data into EXIF?

こ雲淡風輕ζ 提交于 2019-12-10 21:38:40
问题 Recently used Google Takeout to download 60GB+ of photos and video from Google+. This has resulted in plenty of files -- but valuable metadata including the original dates for photos and often location is stored in a separate metadata.json file for every album, instead of in EXIF. This means I can't import it to any other photo service without essentially scrambling all the dates based on what G+ made automatic edits to the photos. Can't find an answer anywhere -- solving this should help

How to load google plus share button in iframe?

和自甴很熟 提交于 2019-12-10 20:33:05
问题 Can anyone give me a solution on How can I load the Google plus share button (not the +1 button) in an iframe asynchronously. I have managed to do that for the +1 button. 回答1: Try this html snippet: <iframe src="https://plusone.google.com/_/+1/fastbutton?bsv&size=medium&hl=en-US&url=http://test.com/&parent=http://test.com/" allowtransparency="true" frameborder="0" scrolling="no" title="+1"></iframe> 回答2: If what you're trying to do is explicitly render the button when a user hovers over

Firebase, Android, Google Plus Login - Not Able To Retrieve User's Email Address

允我心安 提交于 2019-12-10 20:13:10
问题 I am playing around with Google Plus Authentication and Firebase. I am working through the basic auth example with Android at the moment. The basic authentication part is working fine with the code on github, and it works as it should. https://github.com/firebase/firebase-login-demo-android The problem now arises when I am trying to fetch the email address, for some reason it doesn't seem to exist in the authData object. From the Firebase documentation on Google authentication: