Facebook login dialogue won't appear in VR projects

Dear fellow Gear (or other) VR developers. I’m trying to implement screenshot sharing on Facebook from my game.

The Facebook SDK for Unity works for conventional Android games because opening the browser or a pop up window on top of the app to let the user authenticate, log in or give read / publish permissions is fine. But with the phone inserted into Gear VR, this doesn’t work anymore. Only with the Developer mode turned on. The authentication window simply doesn’t show up.

Anyone knows of any workaround? Any way to get the pop up window shown in a world space canvas inside VR?

After extensive research I’ve only found one related thread so far:

Where mdbnet describes something that may help:

Created a web-view plug-in for Android
and managed to copy the render buffer
to a Unity texture using
GetNativeTexturePtr so that it could
be displayed in a floating window.


But before I’d invest time to start implementing his way without any sample code or confirmation by others, I thought I’d see if anyone already succeeded this way or another way to get Facebook authentication in VR?

The answer is this is not possible as of 2017 April. I understand now why no one ever posted any code to have Facebook login for a VR game. Facebook SDK Unity integration rarely provides any functions that work on VR. Facebook dialogues won’t show up.

In case I use the only VR-compatible Webview in asset store as of now, this one has no solution for click detection on Gear VR for the moment (although it does for Cardboard and Daydream, so you may want to give it a try on that platform). OnPointerClick() somehow doesn’t fire and it even suppresses OnMouseButtonUp() from firing, the method that would normally detect Gear VR’s touchpad clicks. Tried cooperating with the asset’s author who was kind enough but has no device at his disposal. The issue was way more complicated that we could solve it within the time I can afford on this question. Even if I had the clicks working, one would still need a Gear VR-compatible virtual keyboard to type in password, because apparently there is no way to avoid asking for password at least for the first time of using the app: Facebook can’t detect that user is already logged in on native Facebook app or in the browser, again, probably because apps running in VR are sandboxed in a way that Facebook SDK is not used to. But I guess having a virtual keyboard would solve the issue, unless the security weakness of typing password on such keyboard is a problem.

The only alternative doesn’t work either: You can’t open Facebook login page in an external browser while running a Gear VR app. I’ve managed, after showing a message ‘Please remove phone from Gear VR to connect to Facebook’, to open the login URL in external browser, calling Application.openURL() from OnApplicationQuit(). But then the token will be returned to this token, not to the app. Tried relaunch the app from the redirect URL you can append the facebook login URL with, for this I’ve tried all possible app URL methods (adding intent filter to manifest with scheme ‘http’ and host ‘myapp.auth’, adding http://myapp.auth as Valid Oauth URL in the app’s Facebook dev page, but Samsung default browser didn’t offer to open the app, automatically handled it as website request. Tried many more ways, no way to get redirected back to the app and pass the token to it directly. So the only way you could get this work using this alternative is to set up a server (which I really don’t want to start just for this) and use its address as redirect URL. Then you can create some PHP code on your server and catch the token sent over there, you will need to take care of encrypting it, and storing it as a hash code. Then from your app you could get the token. The amount of security steps to be taken from that point is overwhelming though (you can’t store app secret code on client side, etc), I mean all this effort is just not worth it to get your game screenshot shared on Facebook. That’s probably why we haven’t seen VR game screenshots being shared directly from the game by some share features.

As for the sharing of screenshots on Facebook, that would be already manageable once you’d have a solution for the above issues with authentication and permissions. The best way is to ‘silently’ upload it to a Facebook an auto-generated album via FB.API(“me/photos?no_story=1”,Httpmethod.Post, etc). Then get the uploaded photo’s URL from the callback and call FB.API(“me/feed”, etc) with the message and link to the photo URL. Reason: simply posting it to me/photos will result in posting the ever-growing album itself rather than just the last image the player would want to share. But sharing the image’s link in feed is fine. Both of these Graph API calls need publish_actions permissions though, so you need to submit your app for review. If you want to avoid that, you need to use FeedShare or ShareLink methods but they can’t upload the image so you’d need to upload the image to your own server first, which may end up expensive if you have many shares and not to mention you need to take care of all the server side coding, storing username, encryption etc. So to me it sounds much better if you can get your app reviewed and have the image uploaded to Facebook.