如何使用Swift和Alamofire连接http服务器

时间:2017-01-11 13:10:11

标签: json swift alamofire

嗨,我是swift的新手,我遇到服务器连接问题。我正在尝试使用方法帖子使用用户名和密码登录服务器。我如何连接到服务器并进行身份验证?

错误消息:

 ["id": <null>, "error": {
    code = "-32700";
    message = "Parse error";
}, "jsonrpc": 2.0]

代码:

class ViewController: UIViewController {

override func viewDidLoad() {
   var userName = "root"
   var password = "admin01"

 //   http://192.168.1.1/ubus
   //var LOGIN_TOKEN = 0000000000000000
    let url: String = "http://192.168.1.1/ubus"
    let param: [String: Any] = ["username": "admin", "password": "admin01", "token": "0000000000000000"]
    Alamofire.request(url, method: .post, parameters: param,
                      encoding: JSONEncoding.default)
        .responseJSON { response in
            guard response.result.error == nil else {
                // got an error in getting the data, need to handle it
                print("error calling post")
                print(response.result.error!)
                return
            }

            // make sure we got some JSON since that's what we expect
            guard let json = response.result.value as? [String: Any] else {
                print("didn't get todo object as JSON from API")
                print("Error: \(response.result.error)")
                return
            }

            print(json)
    }


    super.viewDidLoad()
    // Do any additional setup after loading the view, typically from a nib.
}

override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
}

Json在我需要的服务器上:

{"jsonrpc":"2.0","id":1,"result":[0,{"ubus_rpc_session":"07e111d317f7c701dc4dfde1b0d4862d","timeout":300,"expires":300,"acls":{"access-group":{"superuser":["read","write"],"unauthenticated":["read"]},"ubus":{"*":["*"],"session":["access","login"]},"uci":{"*":["read","write"]}},"data":{"username":"root"}}]}

请求应如下所示:

"{ \"jsonrpc\": \"2.0\", \"id\": 1, \"method\": \"call\", \"params\": [ \"00000000000000000000000000000000\", \"session\", \"login\", { \"username\": \"root\", \"password\": \"admin01\"  } ] }"

1 个答案:

答案 0 :(得分:0)

尝试使用此代码:

 Alamofire.request(url, method: .post, parameters: parameters).responseJSON { response in
                    if(response.result.isFailure){
                        print("no data!");

                    }else{
                      print("received data!");

// make sure we got some JSON since that's what we expect
            guard let json = response.result.value as? [String: Any] else {
                print("didn't get todo object as JSON from API")
                print("Error: \(response.result.error)")
                return
            }

            print(json)
                    }
                }