Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hkjang/node-red-contrib-googleplay
node-red-contrib-googleplayscraper
https://github.com/hkjang/node-red-contrib-googleplay
Last synced: about 2 months ago
JSON representation
node-red-contrib-googleplayscraper
- Host: GitHub
- URL: https://github.com/hkjang/node-red-contrib-googleplay
- Owner: hkjang
- License: other
- Created: 2022-03-14T02:53:31.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-06T22:53:12.000Z (almost 3 years ago)
- Last Synced: 2024-11-20T10:56:11.396Z (2 months ago)
- Language: JavaScript
- Size: 15.6 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-googleplay
================Node-RED node for google-play-scraper
## Install
To install the stable version use the `Menu - Manage palette - Install`
option and search for node-red-contrib-googleplay, or run the following
command in your Node-RED user directory, typically `~/.node-red`npm install node-red-contrib-googleplay
## wrapper googleplay
Node.js module to scrape application data from the Google Play store
- https://github.com/facundoolano/google-play-scraper## Sample Flow
You can make this json string into a flow by using the node-red flow import function.- [sample.json](examples/sample.json)
## Params
```javascript
msg.func = 'reviews';
msg.appId = 'com.google.android.apps.translate'// msg.func = 'app';
// msg.appId = 'com.google.android.apps.translate'// msg.func = 'search';
// msg.term = "chaca";
// msg.num = 2// msg.func = 'developer';
// msg.devId = "Google";// msg.func = 'suggest';
// msg.term = "panda";// msg.func = 'categories';
// msg.func = 'permissions';
msg.country='us'return msg;
```