Converti i comandi CURL in codice Objective-C online

Curl command

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

CURL a Objective-C online

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

Cosa puoi fare con il convertitore da CURL a Objective-C online?

  • CURL to Objective-C è uno strumento davvero unico per convertire il comando CURL in una richiesta Objective-C di Objective-C. L'input fornito dal comando CURL dell'utente per generare il codice Objective-C.
  • Questo strumento ti fa risparmiare tempo e aiuta a generare facilmente codice Objective-C.
  • CURL to Objective-C 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, inclusi Objective-C, Objective-CS, FTP, SFTP, TFTP, Gopher e altri.

Come convertire CURL in codice Objective-C? 

Passaggio 1: incolla e converti le tue richieste CURL in codice Objective-C

Passaggio 2: copia il codice Obiettivo-C

Esempio di conversione di CURL in Objective-C

ARRICCIARE
curl example.com
Obiettivo-C
#import <Foundation/Foundation.h>

NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"http://example.com/"]
                                                       cachePolicy:NSURLRequestUseProtocolCachePolicy
                                                   timeoutInterval:10.0];
[request setHTTPMethod:@"GET"];

NSURLSession *session = [NSURLSession sharedSession];
NSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request
                                            completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
                                                if (error) {
                                                    NSLog(@"%@", error);
                                                } else {
                                                    NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) response;
                                                    NSLog(@"%@", httpResponse);
                                                }
                                            }];
[dataTask resume];