valerian/findmyiphone

Získání pozice Apple zařízení

v0.0.1 2016-11-28 07:57 UTC

This package is not auto-updated.

Last update: 2024-05-11 17:56:31 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();
}