我正在使用带有 FBAndroidSDK/4.8.2 的 Facebook Unity SDK v7.4.0 并设法在 Android 平台的统一游戏中实现深度链接。单击深层链接会将我带入游戏。现在我希望当用户进入游戏时,他必须得到奖励。但是 GetAppLink 回调没有目标 url
Facebook.Unity.FB.GetAppLink(DeepLinkCallback);
void DeepLinkCallback(IAppLinkResult result)
{
if (result != null && !string.IsNullOrEmpty (result.TargetUrl))
{
}
else
{
Debug.Log("result is null");
}
}
我已经浏览了许多链接来尝试解决这个问题。 https://developers.facebook.com/docs/unity/reference/current/FB.GetAppLink http://answers.unity3d.com/questions/1134007/how-to-get-facebook-game-request-url.html 延迟的深层链接在 android 和 facebook SDK 中始终为空
在开发者站点中也启用了深度链接,在获取回调之前还检查了 Facebook sdk 是否已正确初始化