티스토리 뷰

네이버쇼핑 연관검색어 php로 파싱해 보겠다.

파라미터가 한글이라서 url encoding을 안해주면 안된다.

반드시 파라미터는 url 인코딩을 해준다.

나이키로 검색했다고 해보자.

 

<?php

require_once 'simple_html_dom.php';

$u="https://shopping.naver.com/api/modules/gnb/auto-complete?keyword=";
$para="나이키";

$para = rawurlencode($para);
$url=$u.$para;

$html = file_get_html ($url);

echo ( $html );

결과:

   
  {"query":["나이키","나이키","나이키"],"items":[[],[[["나이키 운동화"],["6503"],["8762"],["N"]],[["나이키 반 바지"],["3928"],["5811"],["N"]],[["나이키 양말"],["2684"],["2291"],["N"]],[["나이키 슬리퍼"],["2478"],["3629"],["N"]],[["나이키"],["2529"],["56657"],["N"]],[["나이키축구화"],["2531"],["2069"],["N"]],[["나이키반팔"],["2210"],["2682"],["N"]],[["나이키에어 포스"],["1768"],["5026"],["N"]],[["나이키풋살화"],["1997"],["1715"],["N"]],[["나이키에어 맥스"],["1507"],["2868"],["N"]],[["나이키샌들"],["1378"],["3922"],["N"]],[["나이키신발"],["1423"],["2438"],["N"]],[["나이키모자"],["1297"],["2952"],["N"]],[["나이키 에어 맥스 97"],["1296"],["2611"],["N"]],[["나이키수영복"],["1202"],["2755"],["N"]]],[],[[["나이키 여름 준비 기획전"],["2023-06-29 ~ 2023-07-09"],["https://shopping.naver.com/plan2/p/detail.nhn?seq=672622"],["https://m.shopping.naver.com/plan2/m/detail.nhn?seq=672622"],["https://shop-phinf.pstatic.net/20230623_168/1687482067796WIJ9R_JPEG/0623.jpg"]],[["여름아이템도 나이키와함께"],["2023-07-02 ~ 2023-07-08"],["https://shopping.naver.com/plan2/p/detail.nhn?seq=672909"],["https://m.shopping.naver.com/plan2/m/detail.nhn?seq=672909"],["https://shop-phinf.pstatic.net/20230626_243/1687758773328mByT1_JPEG/046155a3-0027-4392-ade0-440ae33661c0.jpg"]],[["나이키로 데일리하게"],["2023-07-02 ~ 2023-07-08"],["https://shopping.naver.com/plan2/p/detail.nhn?seq=673060"],["https://m.shopping.naver.com/plan2/m/detail.nhn?seq=673060"],["https://shop-phinf.pstatic.net/20230627_153/16878393253526MC8q_JPEG/57373877900081474_-1434386709.jpg"]]],[],[],[],[],[],[],[],[]]}

이제 이것을 정리해서 단어만 뽑아보자.

구글링 해보니 파이썬으로 한것이 있었다.

https://goodthings4me.tistory.com/824

 

네이버 쇼핑 관련 자동완성어, 연관검색어, 추천키워드 추출

파이썬 크롤링으로 네이버 쇼핑 관련 자동완성어, 연관검색어, 추천키워드 추출해본다. 여러 키워드를 리스트로 만들어서 각 항목에 적용시킨 후, 텍스트나 엑셀로 저장하도록 만들면 하나의

goodthings4me.tistory.com

파이썬에서

response=requests.get(url, headers=headers)
json_str=response.text
keywords=json.loads(json_str)

if keywords:
	for auto_keywords in keywords['items'][1]:
    	print(auto_keywords[0][0])

참고해서 해본다.

<?php

require_once 'simple_html_dom.php';

$u="https://shopping.naver.com/api/modules/gnb/auto-complete?keyword=";
$para="나이키";

$para = rawurlencode($para);
$url=$u.$para;

$html = file_get_html ($url);

echo ( $html );

$keywords = json_decode($html);

$arr = $keywords->items[1];

foreach($arr as $a){
	print_r($a[0][0]);
	echo "\n";
}

결과:

 
  {"query":["나이키","나이키","나이키"],"items":[[],[[["나이키 운동화"],["6503"],["8762"],["N"]],[["나이키 반 바지"],["3928"],["5811"],["N"]],[["나이키 양말"],["2684"],["2291"],["N"]],[["나이키 슬리퍼"],["2478"],["3629"],["N"]],[["나이키"],["2529"],["56657"],["N"]],[["나이키축구화"],["2531"],["2069"],["N"]],[["나이키반팔"],["2210"],["2682"],["N"]],[["나이키에어 포스"],["1768"],["5026"],["N"]],[["나이키풋살화"],["1997"],["1715"],["N"]],[["나이키에어 맥스"],["1507"],["2868"],["N"]],[["나이키샌들"],["1378"],["3922"],["N"]],[["나이키신발"],["1423"],["2438"],["N"]],[["나이키모자"],["1297"],["2952"],["N"]],[["나이키 에어 맥스 97"],["1296"],["2611"],["N"]],[["나이키수영복"],["1202"],["2755"],["N"]]],[],[[["나이키 여름 준비 기획전"],["2023-06-29 ~ 2023-07-09"],["https://shopping.naver.com/plan2/p/detail.nhn?seq=672622"],["https://m.shopping.naver.com/plan2/m/detail.nhn?seq=672622"],["https://shop-phinf.pstatic.net/20230623_168/1687482067796WIJ9R_JPEG/0623.jpg"]],[["여름아이템도 나이키와함께"],["2023-07-02 ~ 2023-07-08"],["https://shopping.naver.com/plan2/p/detail.nhn?seq=672909"],["https://m.shopping.naver.com/plan2/m/detail.nhn?seq=672909"],["https://shop-phinf.pstatic.net/20230626_243/1687758773328mByT1_JPEG/046155a3-0027-4392-ade0-440ae33661c0.jpg"]],[["나이키로 데일리하게"],["2023-07-02 ~ 2023-07-08"],["https://shopping.naver.com/plan2/p/detail.nhn?seq=673060"],["https://m.shopping.naver.com/plan2/m/detail.nhn?seq=673060"],["https://shop-phinf.pstatic.net/20230627_153/16878393253526MC8q_JPEG/57373877900081474_-1434386709.jpg"]]],[],[],[],[],[],[],[],[]]}나이키 운동화
  나이키 반 바지
  나이키 양말
  나이키 슬리퍼
  나이키
  나이키축구화
  나이키반팔
  나이키에어 포스
  나이키풋살화
  나이키에어 맥스
  나이키샌들
  나이키신발
  나이키모자
  나이키 에어 맥스 97
  나이키수영복
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/05   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
글 보관함