Converti i comandi CURL in codice Swift online

Curl command

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

CURL a Swift in linea

Questo strumento ti aiuta a generare codice Swift basato sul comando CURL. Copia e incolla il comando CURL e genera Swift.

Cosa puoi fare con il convertitore da CURL a Swift online?

  • CURL to Swift è uno strumento davvero unico per convertire il comando CURL in richiesta Swift di Swift. L'input fornito dal comando CURL dell'utente per generare il codice Swift.
  • Questo strumento ti fa risparmiare tempo e aiuta a generare codice Swift con facilità.
  • CURL to Swift funziona bene su Windows, MAC, Linux, Chrome, Firefox, Edge e Safari.

cos'è il CURL?

CURL è uno strumento da riga di comando open source che scarica file dal Web. Supporta una varietà di protocolli, tra cui Swift, SwiftS, FTP, SFTP, TFTP, Gopher e altri.

Come convertire CURL in codice Swift? 

Passaggio 1: incolla e converti le tue richieste CURL in codice Swift

Passaggio 2: copia il codice Swift

Esempio di conversione di CURL in Swift

ARRICCIARE
curl example.com
Sfrutta PHP
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()