My intent filter is as follows:
<intent-filter> <action android:name="android.intent.action.VIEW" /> <action android:name="android.intent.action.SENDTO" /> <category android:name="android.intent.category.DEFAULT"></category> <category android:name="android.intent.category.BROWSABLE" /> <data android:scheme="http" android:host="mywebsite" android:pathPattern="/oauth/authorize?.*oauth_verifier=.*" /> </intent-filter>
however, this is not consistent.
Should I delete ? and everything after it, it matches, but the site I use uses this URL several times, and the only thing that interests me is oauth_verifier.
Is there a way to make the intent filter match bits (request parameters?) After / oauth / authorize
source share