Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit eb609fc

Browse filesBrowse files
committed
update documentation to prepare for release
1 parent cd99cc6 commit eb609fc
Copy full SHA for eb609fc

File tree

Expand file treeCollapse file tree

2 files changed

+5
-4
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+5
-4
lines changed

‎README.md

Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Tiny script to crawl information of a specific application in the Google play/st
1616
- `parsePrivacy`: obtain an app's privacy details (data collected/shared etc)
1717
- `setDebug`: turn debug mode on or off
1818
- `getDebug`: check whether debug mode is turned on or off
19+
- `dump_raw`: dump the raw data (HTML of the page plus JSON of the data sources) for debug/evaluation
1920

2021
## Using PHP GooglePlay
2122
```php

‎google-play.php

Copy file name to clipboardExpand all lines: google-play.php
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ protected function getApplicationPage($packageName, $lang='en_US', $loc='US') {
6060
}
6161

6262
/** Dump the raw page content for debugging purposes
63-
* @method dump_raw
63+
* @method public dump_raw
6464
* @param string packageName identifier for the app, e.g. 'com.example.app'
6565
* @param optional string fileName basename of the files to write to, optionally with leading path (default: ${packageName}; extensions will be appended)
6666
* @param optional string lang language for translations. Should be ISO 639-1 two-letter code. Default: en
@@ -292,7 +292,7 @@ public function parseApplication($packageName, $lang='en_US', $loc='US') {
292292
}
293293

294294
/** Obtain permissions for a given app
295-
* @method parsePerms
295+
* @method public parsePerms
296296
* @param string packageName identifier for the app, e.g. 'com.example.app'
297297
* @param optional string lang language for translations. Should be ISO 639-1 two-letter code. Default: en
298298
* @return array permission on success, details on the error otherwise
@@ -445,7 +445,7 @@ public function parseCategories($force=false) {
445445
}
446446

447447
/** Obtain list of similar apps
448-
* @method parseSimilar
448+
* @method public parseSimilar
449449
* @param string packageName package name of the app to find similars for, e.g. 'com.example.app'
450450
* @return array array of package names
451451
*/
@@ -459,7 +459,7 @@ public function parseSimilar($packageName) {
459459
}
460460

461461
/** Obtain list of other apps by same author
462-
* @method parseOthers
462+
* @method public parseOthers
463463
* @param string packageName package name of the app to find similars for, e.g. 'com.example.app'
464464
* @return array array of package names
465465
*/

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.