iT邦幫忙

0

請問這個jsonlink網站該怎麼用啊? 我也非常願意付費解決

  • 分享至 

  • xImage

請問這個網站該怎麼用啊?
不知道可不可以教一下或是指點迷津的呢
還是有實際使用成功的範本 我可以自己參照自己學起
不然連搜索該打什麼關鍵字都不懂
真的真心感謝

https://jsonlink.io/

我個人是只會html css
是想要抓我blogger的每篇文章第一張圖片連結網址而已
我知道我問這個問題可能很白癡
還請見諒鞭小力點
但是就是不會也google找不到教學 所以只能這樣問的
我也非常願意付費解決

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

2 個回答

0
揮揮手
iT邦研究生 5 級 ‧ 2022-09-13 09:14:51

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 參數就好.

kings919 iT邦新手 4 級 ‧ 2022-09-13 11:21:04 檢舉

不好意思 能不能請問curl https://jsonlink.io/api/extract?url=[URL]是該貼在哪裡才能正確使用這樣
我個人是只會html css
是想要抓我blogger的每篇文章第一張圖片連結網址而已
我知道我問這個問題可能很白癡
還請見諒鞭小力點
但是就是不會也google找不到教學 所以只能這樣問的
我也很願意付費解決

揮揮手 iT邦研究生 5 級 ‧ 2022-09-14 11:26:27 檢舉

懂html 推測是你會看js
去找,jquery ajax, fetch, axios
用get 的方式 打 https://jsonlink.io/api/extract?url=[URL]
URL 部分調整成你的API

0
Felix
iT邦研究生 2 級 ‧ 2022-09-14 11:50:25

假設我要取得 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/"
}
*/

我要發表回答

立即登入回答