"구글 웹검색API를 통한 검색결과 개수 얻기"의 두 판 사이의 차이

(새 문서: ;구글 웹API를 통한 검색결과 개수 얻기 ==실습== ==같이 보기== *구글 검색결과 개수 분류: 구글)
 
잔글 (봇: 자동으로 텍스트 교체 (-== 참고 자료 == +==참고==))
 
(사용자 2명의 중간 판 14개는 보이지 않습니다)
1번째 줄: 1번째 줄:
;구글 웹API를 통한 검색결과 개수 얻기
==개요==
;[[구글 웹 검색 API]]를 통한 검색결과 개수 얻기
*2011년, 공식적으로는 [[deprecated]]<ref name='csw'>https://developers.google.com/web-search/docs/?csw=1</ref><ref>대신 [[Custom Search API]]를 사용하라고 한다...</ref>
*2014년 9월에 서비스 중단 예정<ref name='csw'/><ref>Its last day of operation will be September 29, 2014.</ref>
*2014년 12월 현재도 사용은 가능하지만, 실제 구글 검색결과보다 적은 수가 검색됨


==실습==
==실습==
<source lang='console'>
[root@zetawiki ~]# curl -s 'https://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=the' | python -m json.tool | grep -i count
            "estimatedResultCount": "2360000000",
            "resultCount": "2,360,000,000",
</source>
==문제점==
*실제 구글 검색결과보다 적은 수를 보여준다는 보고가 많지만<ref>https://code.google.com/p/google-ajax-apis/issues/detail?id=43</ref><ref>https://productforums.google.com/forum/#!topic/webmasters/jbX9KqoKkkE</ref> deprecated이므로 구글에서 고쳐주지 않는다...


==같이 보기==
==같이 보기==
*[[구글 웹 검색 API]]
*[[구글 검색결과 개수]]
*[[구글 검색결과 개수]]
*[[Python Pretty JSON 출력]]
==주석==
<references/>
==참고==
*https://developers.google.com/web-search/docs/?csw=1


[[분류: 구글]]
[[분류: 구글 API]]

2017년 6월 27일 (화) 23:14 기준 최신판

1 개요[ | ]

구글 웹 검색 API를 통한 검색결과 개수 얻기
  • 2011년, 공식적으로는 deprecated[1][2]
  • 2014년 9월에 서비스 중단 예정[1][3]
  • 2014년 12월 현재도 사용은 가능하지만, 실제 구글 검색결과보다 적은 수가 검색됨

2 실습[ | ]

[root@zetawiki ~]# curl -s 'https://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=the' | python -m json.tool | grep -i count
            "estimatedResultCount": "2360000000", 
            "resultCount": "2,360,000,000",

3 문제점[ | ]

  • 실제 구글 검색결과보다 적은 수를 보여준다는 보고가 많지만[4][5] deprecated이므로 구글에서 고쳐주지 않는다...

4 같이 보기[ | ]

5 주석[ | ]

6 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}