我刚刚了解了这个firebase功能动态链接。我试图在我的应用程序中使用相同但我没有在我的应用程序中获取链接。 我已经从控制台创建了一个动态链接,我试图获得动态链接但它返回null。
以下是我的动态链接详情:
Deep link
https://mobiefit.com
Android app
com.firstrun.prototyze
Long Dynamic Link
https://t9nxs.app.goo.gl/?link=https://mobiefit.com&apn=com.firstrun.prototyze&afl=https://mobiefit.com
Short Dynamic Link
https://t9nxs.app.goo.gl/rY6Y
我还在我的启动器活动中添加了intent过滤器:
<!-- [START link_intent_filter] -->
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data
android:host="https://t9nxs.app.goo.gl/rY6Y"
android:scheme="https"/>
</intent-filter>
<!-- [END link_intent_filter] -->
现在我正在尝试获取动态链接,但它正在给我null
// [START get_deep_link]
FirebaseDynamicLinks.getInstance()
.getDynamicLink(getIntent())
.addOnSuccessListener(this, new OnSuccessListener<PendingDynamicLinkData>() {
@Override
public void onSuccess(PendingDynamicLinkData pendingDynamicLinkData) {
// Get deep link from result (may be null if no link is found)
Uri deepLink = null;
if (pendingDynamicLinkData != null) {
deepLink = pendingDynamicLinkData.getLink();
}
// Handle the deep link. For example, open the linked
// content, or apply promotional credit to the user's
// account.
// ...
// [START_EXCLUDE]
// Display deep link in the UI
if (deepLink != null) {
Log.e("deepLink",deepLink.toString());
} else {
Log.d(TAG, "getDynamicLink: no link found");
}
// [END_EXCLUDE]
}
})
.addOnFailureListener(this, new OnFailureListener() {
@Override
public void onFailure(@NonNull Exception e) {
Log.w(TAG, "getDynamicLink:onFailure", e);
}
});
// [END get_deep_link]
有人能告诉我我做错了吗?
答案 0 :(得分:2)
尝试将过滤器部分上的Android.manifest更改为:
android:host="t9nxs.app.goo.gl/rY6Y"
没有&#39; https://&#39;在它之前并保持其余