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

Deeplinking from posted FB feed links doesn't work anymore

i have an app made with unity, where users can post a link from the app to their facebook feed. When another user clicks on this link, the app opens if installed, or the app store opens if not installed. Well, that worked great with the SDK 6.0 so…
2
votes
0 answers

List out the Facebook Request received in Unity 3D

Given that I can send out App Requests to other Facebook friends by the following codes: // in a button event FB.AppRequest("Let's Play!", null, null, null, 50, "", "Play Now!", FriendRequestCallback); Here is the callback function: private void…
Raptor
  • 53,206
  • 45
  • 230
  • 366
2
votes
1 answer

how to save score of a facebook game?

I am trying to make a facebook game using facebook canvas and unity. But i feel a great difficulty to save game score for every level and retrive them and show them also wondering how to make a leader board and show friend score who player it .It…
Mubir
  • 63
  • 1
  • 8
2
votes
2 answers

submitting facebook app for permission of publish_actions

For using score api as it is mentioned it is require to take publish_actions permission as mentioned here https://developers.facebook.com/docs/games/scores/ when I tried to add permission to my app it is giving error It looks like you haven't made…
2
votes
0 answers

Facebook SDK for Unity FB.AppRequest does not respect screen orientation on iOS

Facebook SDK for Unity FB.AppRequest does not respect screen orientation on iOS I've tried with version 6.0 and 6.1beta, and both have the same issue. My app is landscape (allows for both landscape orientations), what's really strange is the dialog…
2
votes
1 answer

Facebook Unity SDK login very slow and sometimes crashes

I noticed this issue with 6.1, but it persists after downgrading to 6.0. On some Android devices, the Facebook login window takes a long time to appear. The loading icon shows intermittently, and then the Facebook window eventually shows, or the…
user1346384
2
votes
0 answers

Unity Facebook 6.0 iOS Deep linking doesn't work

I'm using unity facebook 6.0. My game was prepare for native iOS/Android. I use FB. Feed to let a user share a feed to their wall and the problem is when I clicked to the feed it doesn't link me back to the game, instead it open the link url in the…
2
votes
1 answer

Facebook Unity Plugin v6.0 - crash on Kindle Fire if you login, cancel login, then login again

(This isn't a question, it's a bug report.) Facebook Unity Plugin v6.0 - crash on Kindle Fire if you login, cancel login, then login again. I'm on Unity 4.5.3 (latest). You can reproduce this in the Facebook test scene. Install to your Kindle…
tayl0rs
  • 561
  • 2
  • 5
  • 14
2
votes
0 answers

Unity Facebook SDK couldn't connect to host

Hi there I am working on a project that implements Parse along with Facebook SDK. Everything was fine until a few days ago. Since than FB skd simply wont connect to the servers. I am getting the following errors in the editor : Most common is this…
smallbit
  • 23
  • 4
2
votes
1 answer

How can i get facebook sdk work with Unity3d web game?

I have integrated facebook sdk to my unity game for android and ios. On both platform it works . But now i turned my game to run in web player. but unfortunately i am not unable to login in facebook. I read documentation written in facebook.…
Zankhna
  • 4,570
  • 9
  • 62
  • 103
2
votes
0 answers

Could not securely load assembly (Unity 4.5.1 + Facebook Unity SDK 5.1)

I've just updated Unity from 4.3.4 to 4.5.1 and got this error with Facebook Unity SDK 5.1: Could not securely load assembly from https://integrated-plugin-canvas-rsrc.fbsbx.com/rsrc/unity/lib/sdk_5.1/CanvasFacebook.dll I tried the fix explained in…
andym
  • 77
  • 7
2
votes
2 answers

Facebook Unity SDK, how to force login using webview instead of FB App

By default, the FB Unity SDK will try to use the FB App to login if the user has it installed. Otherwise, it will fall back to using a HTML based popup to let the user login. However the FB App only works with API 1.0 ("basic_info" permission).…
2
votes
1 answer

FB.API in the Unity SDK does not post scores

I'm currently trying to get score posting onto a facebook wall, through Unity. I'm using a simple test case seen below, however it does not currently post anything. The FBResult in the callback function returns with no error, and "true" as the…
2
votes
1 answer

Advise on how to edit text posted to facebook with FB.API of Unity Facebook SDK

I created a Game on Unity3D and I am in the process of adding support for Facebook. What I would like to achieve is the users posting a screenshot of the game showing the score. I succeeded technically, but Facebook rejected my game because the text…
Baltico
  • 483
  • 3
  • 9
2
votes
1 answer

Request for declined permissions. Unity for Facebook

Been trying to request for declined permission with FB.login("Scope") but it redirects me to the login page again. After logging in, it prompts me with a "You have already authorised APPNAME." FB.login doesn't support "auth_type". Does anyone have…