I am trying to create on unity where when I click a button I get taken to invite someone to use the app. I have been able to get to that process but when it comes to clicking the invite button it says the following:
Missing App Link Url
The app link used with this invite does not contain and Android URL.
I have looked at every video, article and document I could find and cant find any way of making this work with unity.
I have the facebook sdk and login,logout, share work fine.
I have seen in the sdk settings on unity there is a place for app link but I dont understand what has to go there.
https://gyazo.com/31bdb85b5b5d39acafbe0452d7faa98c
I am trying to use https://manage.appurl.io/ but it does not seem to be working. Could someone explain the steps needed to get the share function to work.
I sore on one post that I had to generate fb url but that no longer works when I go to the url.
public void Invite()
{
FB.Mobile.AppInvite (
new Uri("https://appurl.io/jaidx0qh"),
new Uri("https://i.gyazo.com/c9d956294974024a5d09e57768e824e8.png"),
InviteCallback
);
}