Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hkjang/node-red-contrib-naversearch
https://github.com/hkjang/node-red-contrib-naversearch
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hkjang/node-red-contrib-naversearch
- Owner: hkjang
- License: other
- Created: 2022-04-05T13:48:26.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-07T00:45:48.000Z (almost 3 years ago)
- Last Synced: 2024-04-19T09:02:52.297Z (9 months ago)
- Language: HTML
- Size: 142 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
node-red-contrib-naversearch
================Node-RED node for naversearch
## Install
To install the stable version use the `Menu - Manage palette - Install`
option and search for node-red-contrib-naversearch, or run the following
command in your Node-RED user directory, typically `~/.node-red`npm install node-red-contrib-naversearch
## Wrapper naver search API
- https://developers.naver.com/docs/serviceapi/search/blog/blog.md## Sample parameters
```jsmsg.api = 'blog'; //# API : blog,news,book,adult,encyc,movie,cafearticle,kin,local,errata,webkr,image,shop,doc
msg.params = {};
msg.params.query = '테슬라'; //#검색어
msg.params.display = "10" // #출력 검색 수
msg.params.sort = 'date' //#결과값의 정렬기준 시간순 date, 관련도 순 sim
msg.params.start = "1" //# 출력 위치return msg;
```
## Sample Flow
You can make this json string into a flow by using the node-red flow import function.- [sample.json](examples/sample.json)
![alt](examples/sample.png)