我正在为我的应用使用动态链接.
我一步一步地按照教程,我可以通过点击Facebook上发布的链接打开应用程序.
但是当我调用getInvitation时,我总是将CANCELED作为AppInviteInvitationResult的状态.
AppInvite.AppInviteApi.getInvitation(mGoogleApiClient,this,false).setResultCallback( new ResultCallback<AppInviteInvitationResult>() { @Override public void onResult(@NonNull AppInviteInvitationResult result) { if (result.getStatus().isSuccess()) { // Extract deep link from Intent Intent intent = result.getInvitationIntent(); String deepLink = AppInviteReferral.getDeepLink(intent); // [END_EXCLUDE] } else { Log.d("StartActivity","getInvitation: no deep link found."); } } });
进入调试,我可以看到result.getStatus()返回CANCELED,但点击舔正确打开应用程序.
哪里我错了?
编辑:我正在使用的链接是:
https://wft4z.app.goo.gl/?link=https://aqld.it/testlink/112972&al=aqld://test/about?params%3D17363&apn=com.project.mydeeplink
清单上的过滤器: