0

ユーザー名とパスワードを使用して外部のWebサイトを開こうとしています。正しいクレデンシャルを持っていますが、次のコードを試してみると、「ログオンに失敗しました:不明なユーザー名または不正なパスワード」エラーが発生します。

        Dim username As String = "username"
        Dim password As New System.Security.SecureString

        'Set value for SecureString type variable   
        Dim plainPassword As String = "pass"
        For Each c As String In plainPassword.ToCharArray
            password.AppendChar(c)
        Next c

        Dim IEprocess As System.Diagnostics.Process = New System.Diagnostics.Process
        IEprocess.StartInfo.FileName = "http://www.website.com/"
        IEprocess.StartInfo.UserName = username
        IEprocess.StartInfo.Password = password
        IEprocess.StartInfo.UseShellExecute = False
        IEprocess.Start()

助言がありますか?

4

1 に答える 1

1

Web サイトにログインしたい場合は、HTTP から POST Methode を使用するのが最善だと思います。ログイン ページのパラメーターのユーザーとパスワードを定義する必要があります (Php、ASP.Net、JAVA ではアクション メソッドを使用することをお勧めします)。

Dim PostData As String = "define your action login" 'example https://login.yahoo.com/config/login_verify2?&.src=ym,username and Password parameters
    Dim bytes() As Byte = ASCIIEncoding.UTF8.GetBytes(PostData)
    Dim httpReg As HttpWebRequest = WebRequest.Create("http://www.website.com/")
    httpReg.Method = "POST"
    httpReg.KeepAlive = True
    httpReg.CookieContainer = mainCookie
    httpReg.ContentType = "application/x-www-form-urlencoded"
    httpReg.Referer = "http://www.website.com/index.html"
    httpReg.ContentLength = bytes.Length
    Dim DtStream As Stream = httpReg.GetRequestStream()
    DtStream.Write(bytes, 0, bytes.Length)
    DtStream.Close()
    Dim httpResponse As HttpWebResponse
    httpResponse = httpReg.GetResponse()
    mainCookie.Add(httpResponse.Cookies)
    Dim reader As New StreamReader(httpResponse.GetResponseStream())
    Dim strSource As String = reader.ReadToEnd
    If strSource.Contains("Selamat Datang") Then
        MessageBox.Show("Sukses Login")
    Else
        MessageBox.Show("Gagal Login")
    End If

参照記事 : http://tech.reboot.pro/showthread.php?tid=61

于 2013-02-08T02:06:54.183 に答える