aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/README.md b/README.md
index 3bbcfb0..08d93de 100644
--- a/README.md
+++ b/README.md
@@ -86,6 +86,18 @@ ensures the certificate is sent with each request and you only have to define th
A: First, install [simpletest][3], then:
$ GSX_DEBUG=1 GSX_TECHID=123456 GSX_SN=12345678 GSX_SHIPTO=123456 GSX_USER=me@example.com GSX_KEYPASS='MySuperSecretKey' GSX_SOLDTO=123456 GSX_CERT=/path/to/my/cert.chain.pem php runtests.php
+
+
+### Q: How can I get Find My iPhone status?
+
+A: Use the following code:
+
+ $warrantylookup = $gsx->warrantyStatus($serialnumber);
+ if (strpos($warrantylookup->activationLockStatus,'Find My iPhone is active') !== false) {
+ $fmid = 1;
+ } else {
+ $fmid = 0;
+ }
License