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
0
votes
3 answers

Facebook SDK for Unity slow settings screen

I'm using the Facebook SDK for Unity v5.04 (also tried 5.03) and whenever I open the FacebookSettings panel in the inspector I get ridiculous slowdown to the point that I can't even use Unity. This only happens when I do that, does anyone know what…
0
votes
2 answers

Facebook login fails with FB app installed

Using Unity 4.3 and Facebook SDK 5.0.3 / 5.0.4 beta I seem to be unable to log in to Facebook on Android using FB.Login("publish_actions", LoginCallback). My game shows the "Game would like to post to your friends on your behalf"-message. After…
Fluup
  • 63
  • 1
  • 8
0
votes
1 answer

Profile pics now showing as questions marks

Our canvas app just started showing questions marks for the profile pictures in Chrome. we use this call https://graph.facebook.com/{fbid}/picture?type=small to get the images. It just started happening today. Any thoughts to what is going on?
cozza
  • 55
  • 1
  • 9
0
votes
1 answer

Crash when using Google Play Game Services (Unity3d in Android)

I have a problem. I am developing a game in Unity3d which uses the official Facebook SDK and NerdGPG for Google Play Game Services. However, there is an annoying bug: WHen I want to see the Achievements or Leaderboards, it opnes the UI, but AFTER I…
0
votes
1 answer

Facebook Unity SDK 5.0.4 iOS feed callbacks are missing post id

Here is a screenshot from Xcode in debug mode running my app on iOS, right after posting a feed: http://screencast.com/t/ium048TZi9 The postId is missing from the dictionary. The feed post is working, as I see the post on my FB wall. So, it's just…
tayl0rs
  • 561
  • 2
  • 5
  • 14
0
votes
1 answer

Unity get facebook friend's name, score, and picture on leaderboard

The FriendSmash sample is kind of hard to follow and i was wondering if anybody had just a simple way to retrieve these using the Unity Facebook SDK? Im pretty sure i have to use the QueryScores and ScoresCallback methods. Not sure how…
0
votes
1 answer

FeedRequest not working. "An Error Has Occured, please try again later"

I have the facebook SDK (Beta 5.04) integrated in my Unity project (Unity 4.3). I have the application in Google Play in Draft mode, and the application in facebook live (with the correct information in the Android Tab). I can log in into the…
Gaston Claret
  • 1,000
  • 1
  • 7
  • 27
0
votes
0 answers

facebook GET user's friends details failed on unity facebook sdk

I tried to get the user's friends details on Unity by calling FB.API : public string ApiQuery = "me/friends"; public void CallFBAPI() { FB.API(ApiQuery, Facebook.HttpMethod.GET, Callback); } I logged in by calling :…
0
votes
1 answer

Facebook SDK for Unity Android does not log in if Facebook App is installed

Related post #1 Related post #2 So my problem is the same as the one in these posts, but I have no idea how to implement any of the solutions found in the threads. I'm running FB SDK 4.3.6 with Unity 4.2.0. I'm basically just trying to run the…
Tibelius
  • 63
  • 1
  • 7
0
votes
1 answer

Facebook Unity SDK hangs on Login() on iOS if you deny apps permissions

I've been struggling for a couple of hours with a strange bug in Facebook Unity SDK 5.0.3 Beta and Unity 4.3.4 After calling FB.Login, the onInitDelegate will not be called due to an Exception thrown by MiniJSON on iOSFacebook.cs line 356. The msg…
Ciprian
  • 1,125
  • 1
  • 9
  • 14
0
votes
1 answer

FacebookSDK Unity ios build Exception: Project file not found at file path

I've been struggling with this problem for a while now, I created a new project and imported the FacebookSDK, and then tried to run a build, the build worked but I got an exception in the console saying Exception: Project file not found at file path…
RandomCouch
  • 129
  • 2
  • 9
0
votes
0 answers

Facebook plugin for Unity: FB.PublishInstall is not showing up in facebook dashboard. Am I doing something wrong in the following code?

The following code on IOS returns confirmation in the xcode logs that the debug statements are going off, so every function listed below is working. Any idea what facebook isn't noticing it? And yes, I have filled out the code in the settings for…
0
votes
0 answers

Facebook unity SDK v5.0.3 error on android - NoClassDefFoundError

The error occurs only on Android and it looks that the facebook sdk wasn't included in the final apk file. Since v4.3.3, the facebook unity sdk for android has been distributed as a project instead of the jar file. I tried the jar file version…
sonee
  • 1
  • 1
0
votes
1 answer

Facebook SDK Unity Plugin - Mobile App Ads Tracking

I am using the Facebook SDK Unity Plugin in my Unity Project which I will use to create iOS and Android builds. Does anyone know how I can implement mobile app ads…
SDD
  • 41
  • 1
  • 3
0
votes
1 answer

doesn't work incorrect canvas with unity integration

I try to add image element in canvas like ad banner. string injection = @"$(""
"").insertbefore(""#unityPlayerEmbed"");"; Application.ExternalEval(injection); but, it…