2011-01-22 48 views
4

我的意圖過濾器看起來是這樣的:匹配意圖過濾器和數據複雜模式

<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> 

然而,這不能匹配。

如果我刪除了以及它後面的所有內容,它匹配,但我匹配的網站多次使用該網址,而我唯一感興趣的是oauth_verifier。

反正有做的意圖過濾器的/的OAuth /授權

回答

2

反正有做的意圖過濾器匹配後位匹配位(查詢參數?)(查詢參數?)在/ oauth /授權後

不,對不起。