Socket
Socket
Sign inDemoInstall

playstore-api

Package Overview
Dependencies
65
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    playstore-api

Full api Play Store


Version published
Weekly downloads
1
Maintainers
1
Created
Weekly downloads
 

Readme

Source

toHttp

Playstore-api

Full api Play Store

Installation

npm

npm install playstore-api --save

Node

import playstore from 'playstore-api'; //ES6
//Or
var playstore = require('playstore-api'); //Node normal

Quick Example

/*
  Param 1: title
  Param 2: price -> 'free', 'pay' or 'all'.
  Param 3. language -> 'es', 'en' or 'fr'
 */
playstore.search('tiro', 'free', 'es', function(err, result) {
  console.log(JSON.stringify(result));
});

/*
  Param 1: title
 */
playstore.searchByTitle('tiro', function(err, result) {
	console.log(JSON.stringify(result));
});

/*
  Param 1: title
  Param 2. language -> 'es', 'en' or 'fr'
 */
playstore.searchByLanguage('tiro', 'es', function(err, result) {
	console.log(JSON.stringify(result));
});

/*
  Param 1: title
  Param 2: price -> 'free', 'pay' or 'all'.
 */
playstore.searchByPrice('tiro', 'free', function(err, result) {
	console.log(JSON.stringify(result));
});

Browser

Use RequireJS o WebPack.

Credits

Full credit to anlijudavid

Keywords

FAQs

Last updated on 07 Jul 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc