forked from ilanpatao/google-playstore-reviews-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (47 loc) · 2.55 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!--/////////////////////////////
// Written by: Ilan Patao //
// [email protected] //
// [email protected] //
//////////////////////////-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Google Playstore Reviews Listing API</title>
<!--Bootstrap CSS-->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!--FontAwesome CSS-->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="row" style="margin-top:100px;">
<div class="col-lg-12">
<h2><i class="fa fa-globe" aria-hidden="true"></i> Google Playstore Reviews Listing API</h2>
</div>
<div class="col-md-6">
<p><input type="text" id="appid" class="form-control" placeholder="APP ID" value="com.supercell.clashofclans"/></p>
<p><button class='go btn btn-block btn-primary'>Get Reviews</button></p>
<div class="results"></div>
</div>
<div class="col-md-6">
<p>This is a simple script designed to pull reviews from the Google Play App Store for any app using the App ID parameter.</p>
<p>Visit the playstore, access an app's details page and copy the app ID from the URL. eg: https://play.google.com/store/apps/details?id=<strong>com.supercell.clashofclans</strong>&hl=en</p>
<p>Enter the App ID of any app and hit the 'Get Reviews' button to see the results.</p>
<p>Json Output:<br />
<textarea id="jsonresults" class="form-control" rows="5" style="width:100%;box-sizing:border-box;"></textarea></p>
Script written by: <a href="mailto:[email protected]">Ilan Patao - [email protected]</a>
</div>
</div>
</div>
<!-- Jquery JS -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<!-- Bootstrap JS -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"></script>
<script src='reviews.js'></script>
</body>
</html>