在AndroidManifest
我有
<activity android:name=".MainActivity">
<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="linhtestdeeplink"
android:scheme="app"/>
</intent-filter>
</activity>
在MainActivity
AppLinkData.fetchDeferredAppLinkData(this,
new AppLinkData.CompletionHandler() {
@Override
public void onDeferredAppLinkDataFetched(final AppLinkData appLinkData) {
// Process app link data
Log.i("TAG", "Deep link receive" + appLinkData);
}
}
);
在Facebook
页面中,我像测试 Deep Link
我的应用收到通知,当我点击通知时,它会启动我的应用,但 appLinkData
总是null
.
我也发送喜欢linhtestdeeplink://tripId=1
,但它也为空。
任何帮助或建议将不胜感激。
我正在使用 facebook sdk 4.5 compile 'com.facebook.android:facebook-android-sdk:[4,5)'