請問這個網站該怎麼用啊?
不知道可不可以教一下或是指點迷津的呢
還是有實際使用成功的範本 我可以自己參照自己學起
不然連搜索該打什麼關鍵字都不懂
真的真心感謝
我個人是只會html css
是想要抓我blogger的每篇文章第一張圖片連結網址而已
我知道我問這個問題可能很白癡
還請見諒鞭小力點
但是就是不會也google找不到教學 所以只能這樣問的
我也非常願意付費解決
How to use Link Metadata
Scraper API
Easy, just make a GET request to the public endpoint
curl https://jsonlink.io/api/extract?url=[URL]
感覺該API帶url 參數就好.
不好意思 能不能請問curl https://jsonlink.io/api/extract?url=[URL]是該貼在哪裡才能正確使用這樣
我個人是只會html css
是想要抓我blogger的每篇文章第一張圖片連結網址而已
我知道我問這個問題可能很白癡
還請見諒鞭小力點
但是就是不會也google找不到教學 所以只能這樣問的
我也很願意付費解決
懂html 推測是你會看js
去找,jquery ajax, fetch, axios
用get 的方式 打 https://jsonlink.io/api/extract?url=[URL]
URL 部分調整成你的API
假設我要取得 Google 首頁的元資料,只要發送 GET 請求就行了。
const aim = 'https://www.google.com.tw/';
const url = `https://jsonlink.io/api/extract/?url=${encodeURI(aim)}`;
fetch(url)
.then(rsp => rsp.json())
.then(res => console.log(res));
/*
Log:
{
title: "Google",
description: "Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for.",
images: [
"https://www.google.com.tw/images/branding/googleg/1x/googleg_standard_color_128dp.png"
],
duration: 118,
domain: "www.google.com.tw",
url: "https://www.google.com.tw/"
}
*/