Questions tagged [facebook-unity-sdk]

Questions related to Facebook's SDK for building Facebook apps with Unity

The Facebook SDK for Unity provides a collection of Facebook's social features to Unity apps, allowing them to integrate closely with Facebook features and data

Resources


Related tags

604 questions
3
votes
0 answers

Stop facebook sdk console logs

Anyone using the facebook sdk(I am using v6.0) for unity must have noticed a plethora of logs on the console that totally dominates the console window obscuring any others logs that you may be wanting to see. I'm sure it was all done with good…
3
votes
2 answers

Facebook SDK for Unity How to use FB.AppRequest in Invitable_friends id(token)?

I'm using Facebook SDK for Unity 5.1. But I have problems developing Android apps. See the following: void GetInviteFriends() { FB.API("/me/invitable_friends", Facebook.HttpMethod.GET, FriendCallback); } Facebook Graph API 2.0 has…
3
votes
1 answer

Make a facebook achievement visible in timeline

I can successfully publish a Facebook Achievement, but it only apears on my activity log. There I have the option to change its visibility from "Allowed on timeline" to "Shown on timeline" or "Hidden from timeline". When I change it to "Shown on…
3
votes
4 answers

New Facebook Permissions API (v2.0) support

After reading the new Facebook Permissions API documentation (v2.0), I updated my Unity3D application to request for both public_profile and user_friends permissions instead of the recently deprecated basic_info one. From: FB.Login…
3
votes
3 answers

facebook-unity-sdk not working on iOS (facebook-unity-sdk)

I am using Unity Facebook SDK 5.1 and Unity version is 4.3.0. I am testing on iPhone 4 device which don't have facebook app installed. I have integrated SDK inside my game. When i try to login into facebook using my app first it opens the FB login…
Victor
  • 33
  • 3
3
votes
1 answer

Facebook FB.Init() Fail for Android Unity

I am using Unity 4.1.2 I have downloaded the latest Facebook SDK for Android package for unity from the developer's site. The package file name is "FacebookSDK-140401.unitypackage" The package is: 5.1 , April 1,2014 I created a new empty project.…
silentkratos
  • 941
  • 2
  • 11
  • 9
3
votes
2 answers

Facebook SDK 5.0.4 for Unity, Android, Login Fails, Correct Hash Key

I think I have the same problem as in this post. I am using Unity4.3.0f4 and Facebook SDK 5.0.4 beta. I use the correct key hash (not the debug one) which I obtained by FB.Android.KeyHash. On my own device, as well as on BlueStacks emulator, I…
babis
  • 228
  • 1
  • 9
3
votes
2 answers

Facebook Post dialog activity not taking full screen

I'm currently using the SDK 5.0.3 beta and Im not able to get the dialog and popups to show on fullscreen. They always have the notification space missing. I tried changing the theme in the androidManifest without any luck....
3
votes
1 answer

Cannot get the Unity web player to load the Facebook dll

I'm trying to test my Facebook integration for a FB Canvas game that I'm working on. When I launch the player I see the following message in the console: loading dll: /rsrc/unity/lib/sdk_5.0/CanvasFacebook.dll Failed downloading…
Sugendran
  • 2,099
  • 1
  • 14
  • 15
3
votes
2 answers

Unity + Parse and Facebook - how to switch users?

I'm working on a Unity project for iOS and Android. We are using Parse as backend service, and would like to allow users to login to their Parse account through Facebook. I'm using: Parse Unity SDK (v1.2.12), Facebook Unity SDK (v4.3.6) and Unity…
3
votes
1 answer

Unity Facebook SDK publish actions

I have a problem when posting player score via the unity facebook sdk. The code for the scores API is calling fine, but the only problem is that the App cannot grant the publish_actions permission when the user login. I tried with and without the…
3
votes
2 answers

Facebook SDK 3.1.2 for Unity - Trouble logging in on Android Devices

I'm using the latest version of the Facebook SDK, version 3.1.2, for Unity. My problem is somewhat similar to this question. The differences being that my iOS builds work just fine. And my Android builds aren't getting null references. Instead, My…
3
votes
1 answer

Facebook AppRequest handle on unity3d game

I am trying to make a game in Unity3D with new facebook unity sdk. I am able to send an AppRequest to the friends in my list. But my doubt is, after my friends has downloaded the same game, how can I communicate with friends using the AppRequest.…
3
votes
2 answers

Facebook Unity3d SDK doesnot include FBUtil and GameStateManager classes

I am trying to integrate facebook sdk in my unity android game. I can not find FBUtil and GameStateManager in SDK downloaded from developer site. I got the userId using FB.UserId. Also got the response "sending to Unity…
Nick
  • 1,035
  • 1
  • 11
  • 18
2
votes
1 answer

Why Firebase opening a browser everytime a user requests to get OTP for phone verification?

I am working on a game that requires user's phone verification to play the game. I am using Firebase Authentication. I have also added SHA keys to Firebase Project.I checked out some tutorials on youtube and found out that they are enabling android…