我是Firebase邀请的新手,并且已经按照文档实施了简单的SMS和电子邮件邀请。除了在SMS和电子邮件中生成的URL外,其他所有内容都可以正常运行。它缺少app_code。这是最终网址
https://.app.goo.gl/i/remaining-part-of-the-url
无法在应用邀请意图上设置动态链接域,我不知道在哪里设置/获取应用代码。
这是我基本上拥有的:
Intent intent = new
AppInviteInvitation.IntentBuilder(getString(R.string.firebase_title))
.setMessage(getString(R.string.firebase_message))
.setCustomImage(Uri.parse(getString(R.string.firebase_img)))
.setCallToActionText(getString(R.string.firebase_cta))
.setDeepLink(dynamicLinkUri)
.build();
startActivityForResult(intent, REQUEST_INVITE);