Rapid account: LBeckX

LBeckX / LBeckX

議論

31
Title
Created at (Click to sort ascending)
A
18
2023-09-13 Unfortunately, I had to change the plan due to the RapidAPI changes. This provides a maximum of 500000 requests per month, as long as I do not provide a paid plan myself. Wed 8:05 13/9/23
A
3
Hi buddhalama88480, This link: `/pornstar/detail?name=A_Yeon&responseProfileImageBase64=1&responseProfileImage=1&responseImages=1` is not an image. It's a simple request preview to get the pornstar details from the "Pornstar by name" request. With profile and images as links and base64 encoded data. You can just take the content of "url" and send it to the RapidAPI endpoint. Then you will get the detailed view of the pornstar. This is a simple axios request example: --- const axios = require('axios'); const options = { method: 'GET', url: 'https://quality-porn.p.rapidapi.com/pornstar/detail', params: { name: 'A_Yeon', responseProfileImage: '1', responseProfileImageBase64: '1', responseImages: '1', responseImagesBase64: '1' }, headers: { ... } }; --- you can test this entpoint by using this: https://rapidapi.com/LBeckX/api/quality-porn Thu 8:03 17/8/23
A
3
Hi buddhalama88480, This link: `/pornstar/detail?name=A_Yeon&responseProfileImageBase64=1&responseProfileImage=1&responseImages=1` is not an image. It's a simple request preview to get the pornstar details from the "Pornstar by name" request. With profile and images as links and base64 encoded data. You can just take the content of "url" and send it to the RapidAPI endpoint. Then you will get the detailed view of the pornstar. This is a simple axios request example: --- const axios = require('axios'); const options = { method: 'GET', url: 'https://quality-porn.p.rapidapi.com/pornstar/detail', params: { name: 'A_Yeon', responseProfileImage: '1', responseProfileImageBase64: '1', responseImages: '1', responseImagesBase64: '1' }, headers: { ... } }; --- you can test this entpoint by using this: https://rapidapi.com/LBeckX/api/quality-porn Thu 8:03 17/8/23
A
18
2023-09-13 Unfortunately, I had to change the plan due to the RapidAPI changes. This provides a maximum of 500000 requests per month, as long as I do not provide a paid plan myself. Wed 8:05 13/9/23
A
1
Sorry but in my response is all well. could you pls. describe the problem? Thu 10:00 30/3/23
A
7
The problem is that you have to call each page, each link once. My API returns about 380 video links per request, which means you would have to make 380 requests afterwards. That probably takes a long time even if I cache the videos, since new videos are constantly being added. But why do you need the player links of 380 videos at the same time. Surely any browser would crash? Do you have your code on GitHub? I assume that you have written your code in PHP. In my opinion PHP is not that good for asychrone requests. Therefore I would rather recommend NodeJS. If you want to do it with PHP, I found something here: https://www.geeksforgeeks.org/how-to-make-asynchronous-http-requests-in-php/ With this you could theoretically make 380 requests at the same time and that would be much faster than with synchronous requests. Because you don't have to wait for the answer of each request until you can start the next one. Sat 7:48 25/3/23