“laravel http enviar datos json raw” Código de respuesta

laravel envía http post solicitud json

use GuzzleHttp\Client;
class yourController extends Controller {

    public function saveApiData()
    {
        $client = new Client();
        $res = $client->request('POST', 'https://url_to_the_api', [
            'form_params' => [
                'client_id' => 'test_id',
                'secret' => 'test_secret',
            ]
        ]);
        echo $res->getStatusCode();
        // 200
        echo $res->getHeader('content-type');
        // 'application/json; charset=utf8'
        echo $res->getBody();
        // {"type":"User"...'
}
Tiago F2

laravel http enviar datos json raw

$response = Http::contentType("text/plain")->send('POST','https://example.com', [
    'body' => 'FETCH....'
])->json();
Lokesh003

Respuestas similares a “laravel http enviar datos json raw”

Preguntas similares a “laravel http enviar datos json raw”

Más respuestas relacionadas con “laravel http enviar datos json raw” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código