laravel-shift / curl-converter

Online tool to convert `curl` requests to Laravel `Http` requests
MIT License
88 stars 10 forks source link

Create insecure request #33

Open eldario opened 7 months ago

eldario commented 7 months ago

Problem

I'm trying to enter the command on https://laravelshift.com/convert-curl-to-http

curl --insecure -X POST http://example.com -H 'User: AAA' -d '{"data":"some"}'

Result of this:

Http::withBody('{"data":"some"}')
    ->withHeaders([
        'User' => 'AAA',
    ])
    ->post('http://example.com');

Expected Result

Http::withBody('{"data":"some"}')
    ->withoutVerifying()
    ->withHeaders([
        'User' => 'AAA',
    ])
    ->post('http://example.com');

The same situation with the `-k flag

curl -k -X POST http://example.com -H 'User: AAA' -d '{"data":"some"}'

Result of this: изображение

Expected Result

Http::withBody('{"data":"some"}')
    ->withoutVerifying()
    ->withHeaders([
        'User' => 'AAA',
    ])
    ->post('http://example.com');

From https://curl.se/docs/sslcerts.html

Tell libcurl to not verify the peer. With libcurl you disable this with curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, FALSE);

With the curl command line tool, you disable this with -k/--insecure.