we are using facebook unity sdk game requests on android.
- when someone clicks a game request in their facebook notifications
- they switch to the game or the app store page (if it's not installed)
- when the game runs, we call FB.GetAppLink(DeepLinkCallback)
- however, we receive empty url.
anyone knows how to achieve this ?
Thanks.
Full code:
void AfterInit(){
FB.GetAppLink(DeepLinkCallback);
}
void DeepLinkCallback(IAppLinkResult result) {
Debug.Log("app url = "+result.Url);
}