Skip to main content

AndroidでWebviewでBasic認証を突破する


AndroidでWebview使ってたらBasic認証が何もせずにキャンセル扱いになってた
そんなわけで解決策


・MainActivity

class MainActivity : AppCompatActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)

        webview.webViewClient =  object : WebViewClient() {
            override fun onReceivedHttpAuthRequest(view: WebView?, handler: HttpAuthHandler?, host: String?, realm: String?) {
                handler?.proceed("ユーザー名", "パスワード")
            }
        }

        webview.loadUrl("ユーアールエル")
    }
}

・activity_main

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <WebView
        android:id="@+id/webview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"/>

</androidx.constraintlayout.widget.ConstraintLayout>

 

そういやアプリだとalert抑止されてたなぁと思ったので
Basic認証も同じ扱いなんですかね
ユーザにBasic認証させる必要があるならネイティブでダイアログ作る必要がありそうですね

関連記事:

Pocket