I’ve tried everything anyone has seen this error?
Clicking the invite: I get the message “App Request dialog is not implemented in the Unity editor.”
public void InviteFriends()
{
FB.AppRequest(
message: "T...",
title: "...."
);
}
Clicking share: “Share Link is not implemented in the Unity editor”
public void ShareWithFriends()
{
//FB.Feed or
FB.ShareLink (
contentURL: "http://apps.facebook.com/" + FB.AppId + "/?challenge_brag=" + (FB.IsLoggedIn ? FB.UserId : "guest"),
contentTitle: "...",
contentDescription: "....",
photoURL: ";....",
callback: LogCallback
);
}
void LogCallback(FBResult response) {
Debug.Log(response.Text);
}
more
http://forum.unity3d.com/threads/error-sdk-facebook-and-unity3d-5.344128/
img