Tiontaigh orduithe CURL go cód Swift ar líne

Curl command

Examples: GET - POST - JSON - Basic Auth - Files - Form

CURL go Swift ar líne

Cuidíonn an uirlis seo leat cód Swift a ghiniúint bunaithe ar ordú CURL. Cóipeáil agus greamaigh ordú CURL agus giniúint Swift.

Cad is féidir leat a dhéanamh leis an tiontaire CURL go Swift ar líne?

  • Is uirlis an-uathúil é CURL to Swift chun ordú CURL a thiontú go hiarratas Swift ó Swift. An t-ionchur a sholáthraíonn ordú CURL an úsáideora chun cód Swift a ghiniúint.
  • Sábhálann an uirlis seo do chuid ama agus cuidíonn sé cód Swift a ghiniúint gan stró.
  • Oibríonn CURL go Swift go maith ar Windows, MAC, Linux, Chrome, Firefox, Edge agus Safari.

cad é CURL?

Is uirlis líne ordaithe foinse oscailte é CURL a íoslódálann comhaid ón ngréasán. Tacaíonn sé le héagsúlacht prótacail, lena n-áirítear Swift, SwiftS, FTP, SFTP, TFTP, Gopher agus daoine eile.

Conas CURL a thiontú go cód Swift? 

Céim 1: Greamaigh agus tiontaigh d’iarratais CURL go cód Swift

Step2: Cóipeáil cód Swift

Tiontaigh CURL go sampla Swift

CURL
curl example.com
PHP Guzzle
import Foundation

let request = NSMutableURLRequest(url: NSURL(string: "http://example.com/")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()