valerian / findmyiphone
Získání pozice Apple zařízení
v0.0.1
2016-11-28 07:57 UTC
Requires
- php: >=5.5.0
- guzzlehttp/guzzle: ^6.2
This package is not auto-updated.
Last update: 2025-04-12 23:14:14 UTC
README
Track your Apple devices. A PHP client for Apple's Find My iPhone service iCloud®.
Requirements
Requires PHP 5.5.0 or higher.
Installation
The best way to install valerian/findmyiphone is using Composer:
$ composer require valerian/findmyiphone
Getting Started
Find all devices in iCloud
$findMyIphone = new Valerian\FindMyIphome('icloud username', 'icloud password'); $devices = $findMyIphone->getDevices(); foreach ($devices as $device) { $location = $device->getLocation(); if ($location) { $latitude = $location->getLatitude(); $latitude = $location->getLongitude(); } }
Find device by name
$findMyIphone = new Valerian\FindMyIphome('icloud username', 'icloud password'); $device = $findMyIphone->getDevice('deviceDisplayName'); $location = $device->getLocation(); if ($location) { $latitude = $location->getLatitude(); $latitude = $location->getLongitude(); }