https://github.com/azozzalfiras/app-requires-updating
Check the application in the App Store if it requires an update or not
https://github.com/azozzalfiras/app-requires-updating
api appstore appstore-api azozzalfiras check-version go javascript js objective-c php python swift
Last synced: 2 months ago
JSON representation
Check the application in the App Store if it requires an update or not
- Host: GitHub
- URL: https://github.com/azozzalfiras/app-requires-updating
- Owner: AzozzALFiras
- Created: 2023-10-15T04:34:55.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-15T04:56:17.000Z (over 1 year ago)
- Last Synced: 2025-01-20T21:50:04.025Z (4 months ago)
- Topics: api, appstore, appstore-api, azozzalfiras, check-version, go, javascript, js, objective-c, php, python, swift
- Language: Objective-C
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# App requires updating
Check the application in the App Store if it requires an update or not# How does it work? I will create an example in the language of PHP
# First Import file AppStore_InfoApp.class.php
```PHP
include ("AppStore_InfoApp.class.php");
```# Second Call Function's
```PHP
$AppStore = new AppStore_InfoApp();// how to use the url like
// https://127.0.0.1:8912/check.php?bundleId=[YOUR_APP_BUNDEL]&version=[YOUR_APP_VERSION]
if((isset($_GET["bundleId"])) && (isset($_GET["version"]))){
$bundleid = $_GET["bundleId"];
$Version = $_GET["version"];
echo $AppStore->get_info_app($bundleid,$Version);
}```