aso icon indicating copy to clipboard operation
aso copied to clipboard

404 App not found

Open sulaiman21 opened this issue 5 years ago • 1 comments

  • Operating System: Windows 10 build 18363
  • Node version: 13.10.1
  • google-play-scraper version: 7.1.2

Description: I am working with aso module and i am getting 404 App not found error. I am sending a very simple request with just 1 keyword and that is used in example.

Example code:

const router = require("express").Router();
const gplay = require("aso")("gplay");

//keyword score
router.get("/score/:keyword", (req, res, next) => {
  console.log(req.params.keyword);
  const keyword = req.params.keyword;
  gplay
    .scores(`${keyword}`)
    .then(console.log)
    .catch(err => {
      res.send(err);
    });
});

module.exports = router;

Error message:

Error: App not found (404)
    at E:\Workspaces\React_Native\ASO_Tool\backend\node_modules\aso\node_modules\google-play-scraper\lib\utils\request.js:44:19

sulaiman21 avatar Mar 31 '20 12:03 sulaiman21

Any update on this issue? @facundoolano

rizwan95 avatar Apr 24 '20 16:04 rizwan95