پینترست دانلودر
دانلود از پینترست دارای تمامی کیفیت ها و خروجی جیسون
آدرس اصلی
https://open.nestapi.ir/apis-1/PintrestDownloader
نمونه آدرس
https://open.nestapi.ir/apis-1/PintrestDownloader?link=https://pin.it/2qFPoA5JB&key=توکن_شما
پارامترها
نام پارامتر | اجباری | توضیح |
---|---|---|
key | بله | توکن شما |
link | بله | لینک پینترست |
نمونه کد
برای استفاده راحتتر از این وبسرویس، نمونه کدهایی به زبانهای مختلف ارائه شده است:
- PHP
- Python
- cURL
<?php
$payloads = http_build_query([
'link' => 'https://pin.it/2qFPoA5JB',
'key' => 'توکن_شما'
]);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://open.nestapi.ir/apis-1/PintrestDownloader?" . $payloads);
curl_setopt($ch, CURLOPT_HTTPGET, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
import requests
url = "https://open.nestapi.ir/apis-1/PintrestDownloader"
params = {
"link": "https://pin.it/2qFPoA5JB",
"key": "توکن_شما"
}
response = requests.get(url, params=params)
print(response.json())
curl "https://open.nestapi.ir/apis-1/PintrestDownloader?link=https%3A%2F%2Fpin.it%2F2qFPoA5JB&key=your_token"
لینک های بیشتر
Nest API همیشه در کنار شماست تا تجربهای بیوقفه و کارآمد از استفاده از APIها را در اختیار شما قرار دهد.