如何使用 uiwebview 和 swift 登录网站?

2023-12-05

我想尝试在 ios 应用程序中使用 UIWebView 登录网页。但是,我不知道该怎么做。我正在显示网站

let url = NSURL(string: "http://m.falalem.com")
let request = NSURLRequest(URL: url!)
webView.loadRequest(request)

我想使用我的用户名和密码参数登录此页面。 登录页面->http://m.falalem.com/登录登录页面后->http://m.falalem.com/User-Info

如何使用uiwebview登录这个页面? 请帮忙!


一般登录网页(使用 JS、PHP 等)都会使用POST请求,对吗?

特别是在您的网站上,针对用户hello用密码world the POST看起来像下面这样:

您的特定请求标头在哪里:

LoginUser: c7e28a618886dba19eac0892ad90cf51
RTrn: http://m.falalem.com/User-Info
EPostam (user): hello
Sifrem (password): world

同样,在 Swift 中,您将加载一个UIWebView有类似的要求。据推测,您正在从以下位置接收用户名和密码:UITextFields 并将使用它们登录UIWebView:

@IBOutlet weak var usernameTextField: UITextField!

// Note: you will want to secure this either by checking the box 
// in Attributes Inspector or programmatically using 
// `passwordTextField.secureTextEntry = true`
@IBOutlet weak var passwordTextField: UITextField!

@IBOutlet weak var webView: UIWebView!

...

// fire when the UIButton for "sign in" or "Giriş Yap" is pressed
@IBAction func signIn(sender: AnyObject) {
    var url = NSURL(string: "http://m.falalem.com/System/Falalem")

    // Note that you will want to use a `NSMutableURLRequest` 
    // because otherwise, you will not be able to edit the `request.HTTPMethod`
    var request = NSMutableURLRequest(URL: url!)

    // You need to specifically tell the request what HTTP method to use
    // (e.g., GET, POST, PUT, DELETE)
    request.HTTPMethod = "POST"

    // Is this generated/an API key? If generated per user, use `var`
    let loginUser: String = "c7e28a618886dba19eac0892ad90cf51"

    // The page you want to go to after login
    let redirectPage: String = "http://m.falalem.com/User-Info"

    // Get the user's credentials from the `UITextField`s
    var username: String = usernameTextField.text
    var password: String = passwordTextField.text

    // Concatenating everything together
    var userCredentials: String = "EPostam=\(username)&Sifrem=\(password)"
    var bodyData: String = "\(userCredentials)&RTrn=\(redirectPage)&LoginUser=\(loginUser)"

    // Encode the bodyData string into a 
    request.HTTPBody = bodyData.dataUsingEncoding(NSUTF8StringEncoding)

    // load the UIWebView `webView` with this request
    webView.loadRequest(request)
}

现在,如果您没有通过以下方式获取用户的凭据UITextFields,您可以简单地继续

let url = NSURL(string: "http://m.falalem.com")
let request = NSURLRequest(URL: url!)
webView.loadRequest(request)

因为用户只需通过移动网站输入他/她的凭据并以这种方式重定向。

最后,您可能需要使用 SSL,因为否则您将以纯文本形式发送密码(或哈希值),这是不安全的。

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

如何使用 uiwebview 和 swift 登录网站? 的相关文章

随机推荐