I want to check app version which i have uploaded on playstore for force update. What should i do ? I tried to hit http request but getting cors issue and it will give result in html . I tried following api call
this.http.get( "https://play.google.com/store/apps/details?id=com.moglix.vendor").subscribe(data => {
alert(data);
});
I checked other solution like How get the app version on the play store it is not working for me.
I have alternative of rest api but i want to look into any functionality from play store only .