Search found 16 matches

by husterdusk
Sun Jul 28, 2024 7:02 pm
Forum: General discussion
Topic: doodstream API
Replies: 5
Views: 627

Re: doodstream API

The result of code above with the implementation of just a simple CSS. We can also add a request for research by tags and video nicknames and make an implementation in the search bar

Image
by husterdusk
Sun Jul 28, 2024 6:48 pm
Forum: General discussion
Topic: doodstream API
Replies: 5
Views: 627

Re: doodstream API

(4) If the response is successful (status == 200), it will go through the API and bring the thumbnail and the link of the videos. It can also be changed to go to a parameter of its own page. echo '<div class="container">'; if ($response && $response['status'] == 200) { $videos = $...
by husterdusk
Sun Jul 28, 2024 6:43 pm
Forum: General discussion
Topic: doodstream API
Replies: 5
Views: 627

Re: doodstream API

(3) function with the "endpoint" of videos to call the list

Code: Select all

$videosEndpoint = $apiBaseUrl . '/file/list';
$response = makeApiRequest($videosEndpoint, $apiKey);
by husterdusk
Sun Jul 28, 2024 6:39 pm
Forum: General discussion
Topic: doodstream API
Replies: 5
Views: 627

Re: doodstream API

(2) Making request function makeApiRequest($endpoint, $apiKey) { $url = $endpoint . '?key=' . $apiKey; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $output = curl_exec($ch); curl_close($ch); return json_decode($output, true); }
by husterdusk
Sun Jul 28, 2024 6:37 pm
Forum: General discussion
Topic: doodstream API
Replies: 5
Views: 627

Re: doodstream API

(1)
Installing your API

Code: Select all

$apiKey = '*******'; // Your API
$apiBaseUrl = 'https://doodapi.com/api';
by husterdusk
Sun Jul 28, 2024 5:46 pm
Forum: General discussion
Topic: doodstream API
Replies: 5
Views: 627

doodstream API

https://thumbs2.imgbox.com/10/12/v71v6n5p_t.png Doodstream is a platform for storing videos and sharing them on social networks and personal websites. In addition, videos can be monetized. Many users have difficulty setting up the API, but it is quite simple to understand. Here is a small project t...
by husterdusk
Sun Jul 28, 2024 12:49 am
Forum: General discussion
Topic: Streamtape API
Replies: 5
Views: 741

Re: Streamtape API

(5)

The style choice is up to you.

Result

Image
by husterdusk
Sun Jul 28, 2024 12:13 am
Forum: General discussion
Topic: Streamtape API
Replies: 5
Views: 741

Re: Streamtape API

(4) And to finish process the response data using some conditions if ($httpCode === 200) { $responseData = json_decode($response, true); if (isset($responseData['result']) && is_array($responseData['result'])) { $files = $responseData['result']['files']; if (!empty($files)) { echo '<h2>Vide...