Convierta comandos CURL a código Swift en línea

Curl command

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

CURL a Swift en línea

Esta herramienta lo ayuda a generar código Swift basado en el comando CURL. Copie y pegue el comando CURL y genere Swift.

¿Qué puedes hacer con el convertidor CURL a Swift en línea?

  • CURL to Swift es una herramienta única para convertir el comando CURL a la solicitud Swift de Swift. La entrada proporcionada por el comando CURL del usuario para generar código Swift.
  • Esta herramienta le ahorra tiempo y ayuda a generar código Swift con facilidad.
  • CURL to Swift funciona bien en Windows, MAC, Linux, Chrome, Firefox, Edge y Safari.

¿Qué es CURL?

CURL es una herramienta de línea de comandos de código abierto que descarga archivos de la web. Admite una variedad de protocolos, incluidos Swift, SwiftS, FTP, SFTP, TFTP, Gopher y otros.

¿Cómo convertir CURL a código Swift? 

Paso 1: pegue y convierta sus solicitudes CURL en código Swift

Paso 2: Copie el código Swift

Ejemplo de conversión de CURL a Swift

RIZO
curl example.com
Guzzle de 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()