Answers for "laravel get data from api"

PHP
1

how to save data from api to laravel

$res = $gallery->request('GET','https://www.instagram.com/explore/tags/MIZONEDanceBattle/?__a=1');
    $data = json_decode($res->getBody()->getContents(), true);

    $gallery = Gallery::firtsOrCreate([
            'shortcode',
            'thumbnail_src',
        ], $data]); // add $data here
    $gallery->save();
Posted by: Guest on October-30-2020
0

laravel check if api request

if (Request::wantsJson()) {
    // return JSON-formatted response
} else {
    // return HTML response
}
Posted by: Guest on March-23-2020
0

laravel get data from request

dd($request->all());
//print an array of the input name and the input value
Posted by: Guest on July-04-2020

Browse Popular Code Answers by Language