Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // Creado por Jose89FCB
- $curl = curl_init();
- curl_setopt_array($curl, array(
- CURLOPT_URL => "https://fortnite-api.com/shop/br?language=es",
- CURLOPT_RETURNTRANSFER => true,
- CURLOPT_ENCODING => "",
- CURLOPT_MAXREDIRS => 10,
- CURLOPT_TIMEOUT => 0,
- CURLOPT_FOLLOWLOCATION => false,
- CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
- CURLOPT_CUSTOMREQUEST => "GET",
- CURLOPT_HTTPHEADER => array(
- "x-api-key: AQUI LA KEY"
- ),
- ));
- $response = curl_exec($curl);
- $err = curl_error($curl);
- curl_close($curl);
- if ($err) {
- echo "cURL Error #:" . $err;
- } else {
- echo $response;
- } ?>
Add Comment
Please, Sign In to add comment