私のWebページに追加します:
<meta property="al:android:url" content="myapp://dp/product/5" />
<meta property="al:android:app_name" content="myAPP" />
<meta property="al:android:package" content="xx.xxxx.xxx.v2" />
そして私の AndroidManifest に追加しました:
<intent-filter>
<data android:scheme="https" android:host="mywebsite.com" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
Google 検索でリンクの 1 つをタップするとアプリが開きますが、getIntent().getData() から取得できる情報は URL リンクだけです。アプリ内から情報 (コンテンツ) を取得するにはどうすればよいですか:
<meta property="al:android:url" content="myapp://dp/product/5" />
ありがとう