Node.js/node crawling
2020. 8. 17.
노드 크롤링 - 페이스북 이미지 가져오기, 좋아요 구현하기, DB 저장
https://loy124.tistory.com/290 노드 크롤링 - 페이스북 로그인, 로그아웃 하기 const puppeteer = require("puppeteer"); const crawler = async() => { try{ const browser = await puppeteer.launch({headless: false, args:['--window-size=1920,1080']}); const page = await browser.newP.. loy124.tistory.com 윗 글에 이어서 진행한다. 첫 피드 가져오기 ^=로 진행하면 id가 hyperfeed_story로 시작되는 값 $=로 진행하면 id가 hyperfeed_story로 끝나는 값 *=로 진행하면 hyperfeed+sto..