Android進階2之oauth認證中UC無法跳轉的問題

來源:互聯網
上載者:User

在開發新浪微博,網易微薄,搜狐微博等等android用戶端的時候需要oauth認證,也就是要開啟一個第三方提供的認證網頁進行授權。

使用者在授權之後會再跳回應用完完成授權。在請求使用者授權的時候會提供一個callback地址,使用者完成授權操作後會跳回這個地方一般是某個Activity。

但由於某些原因第三方瀏覽器例如UC瀏覽器無法完成跳轉,系統內建瀏覽器卻可以。

本博文就給出一個解決方案來解決這個問題。

 

Intent i=new Intent();</p><p>i.setAction(Intent.ACTION_VIEW,Uri.parse("http://veikr.com"));</p><p>startActivity(i);來開啟某個網址。如果你的手機上沒有第三方的瀏覽器例如UC等你可以正常使用,但是很不幸的是一般手機使用者都會安裝UC瀏覽器。

 

第三方瀏覽是無法支援自訂schema的(比如myapp://AuthActivity)。

 

<activity<br /> android:name=".AuthActivity"<br /> android:label="@string/app_name"<br /> android:launchMode="singleTask" ><br /> <intent-filter><br /> <action android:name="android.intent.action.VIEW" /></p><p> <category android:name="android.intent.category.DEFAULT" /><br /> <category android:name="android.intent.category.BROWSABLE" /></p><p> <data<br /> android:host="AuthActivity"<br /> android:scheme="myapp" /><br /> </intent-filter><br /> </activity> <data
                    android:host="AuthActivity"
                    android:scheme="myapp" />

 

我們既不想卸載掉我們的UC,又想完成認證怎麼辦呢?

看看以下的方法:

 

Intent intent = new Intent();<br />ComponentName name = new ComponentName("com.android.browser", "com.android.browser.BrowserActivity");<br />intent.setComponent(name);<br />intent.setData(Uri.parse(authUrl));<br />intent.setAction(Intent.ACTION_VIEW);<br />activity.startActivity(intent);
anthUrl是Url網址。

 

你需要把”myapp://AuthActivity”作為callback傳遞給新浪的oauth認證地址,在完成認證後會返回這個地址,然後你的應用程式就會跳到這個AuthActivity中去。在oncreate中使用getIntent().getData()就可以得到uri,pin就在uri中。



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.