我在twitter應用中使用OAUTH,它會將您發送到應用中的Twitter頁面,然後您登錄並重定向回到處理令牌的應用。這適用於android 2.0.x和3.0.x,但在4.0中,當我嘗試重定向到我的應用程序時,出現「網頁不可用」。有人可以告訴我爲什麼這是? 我已經在我的清單文件如下:活動URL回調在4.0.3中不起作用ICS
<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:scheme="myapp" android:host="myactivity"/>
</intent-filter>
的Twitter頁面給予其一直致力於回調URL,但現在並沒有在Android 4.0的ICS,可以請人幫忙嗎? 謝謝。
+1 +1 +1我有一個4.0.3手機(HTC Amaze 4G)完全相同的問題,雖然重定向在其他所有方面都起作用。我一直在尋找找到這個答案的地方。我假設它與新的權限有關,否則它是4.0.3本身的錯誤。重定向工作在4.1中,但不在4.0.3中。 – tbjers
@tbjers - 你們能找到解決方案嗎? – DeRagan