首先感謝 天狐 大神的指點!!!!
轉(zhuǎn)載自: https://www.skyfox.org/safari-ios-device-udid.html
科普: UDID 是由子母和數(shù)字組成的40個字符串的序號卵迂,用來區(qū)別每一個唯一的iOS設備,包括 iPhones, iPads, 以及 iPod touches
隨著蘋果對程序內(nèi)獲取UDID封殺的越來越嚴格,私有api已經(jīng)獲取不到UDID,Mac地址等信息,繼而出現(xiàn)了使用鑰匙串配合uuid等等方法變相實現(xiàn)
由于近期項目需求是設備授權(quán)的形式使用軟件,使用鑰匙串等方法不完全能解決問題,因為重置或重做系統(tǒng)都會清除uuid然后重新存入,所以想到了用safari的方式獲取設備真實的UDID阔馋。
運行效果:
獲取設備UDID
一劫灶、通過蘋果Safari瀏覽器獲取iOS設備UDID步驟
蘋果公司允許開發(fā)者通過IOS設備和Web服務器之間的某個操作吠各,來獲得IOS設備的UDID(包括其他的一些參數(shù))音同。這里的一個概述:
1肆饶、在你的Web服務器上創(chuàng)建一個.mobileconfig的XML格式的描述文件;
2储玫、用戶在所有操作之前必須通過某個點擊操作完成.mobileconfig描述文件的安裝侍筛;
3、服務器需要的數(shù)據(jù)撒穷,比如:UDID匣椰,需要在.mobileconfig描述文件中配置好,以及服務器接收數(shù)據(jù)的URL地址端礼;
4禽笑、當用戶設備完成數(shù)據(jù)的手機后入录,返回提示給客戶端用戶;
二佳镜、.mobileconifg
<!--參考:https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/iPhoneOTAConfiguration/ConfigurationProfileExamples/ConfigurationProfileExamples.html-->
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PayloadContent</key>
<dict>
<key>URL</key>
<string>http://dev.skyfox.org/udid/receive.php</string> <!--接收數(shù)據(jù)的接口地址-->
<key>DeviceAttributes</key>
<array>
<string>UDID</string>
<string>IMEI</string>
<string>ICCID</string>
<string>VERSION</string>
<string>PRODUCT</string>
</array>
</dict>
<key>PayloadOrganization</key>
<string>dev.skyfox.org</string> <!--組織名稱-->
<key>PayloadDisplayName</key>
<string>查詢設備UDID</string> <!--安裝時顯示的標題-->
<key>PayloadVersion</key>
<integer>1</integer>
<key>PayloadUUID</key>
<string>3C4DC7D2-E475-3375-489C-0BB8D737A653</string> <!--自己隨機填寫的唯一字符串-->
<key>PayloadIdentifier</key>
<string>dev.skyfox.profile-service</string>
<key>PayloadDescription</key>
<string>本文件僅用來獲取設備ID</string> <!--描述-->
<key>PayloadType</key>
<string>Profile Service</string>
</dict>
</plist>
你需要填寫回調(diào)數(shù)據(jù)的URL和PayloadUUID僚稿。該PayloadUUID僅僅是隨機生成的唯一字符串,用來標識唯一
注意:mobileconfig下載時設置文件內(nèi)容類型Content Type為:application/x-apple-aspen-config
三、iOS設備安裝.mobileconfig描述文件
新建一個用于下載mobileconfig的網(wǎng)頁,這里我命名為udid.php
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0,user-scalable=no" name="viewport" id="viewport" />
<title>獲取您的UDID</title>
<body>
<div id="content">
UUDI:<input style="" name="" value="$udid" />
<a class="buttons" href="udid.mobileconfig" target="_blank">1.點擊獲取您的UDID</a>
<a class="buttons" href="yourapp://?function=valid&uuid=$udid">2.驗證ipa</a>
</div>
</body>
</html>
yourapp為應用提前設置的URL Schemes(查看自定義 URL Scheme 完全指南)
下面的界面就是用戶通過瀏覽器點擊開始安裝時的界面蟀伸,用戶點擊“Install/安裝”開始安裝蚀同,下面的mobileconfig文件是沒有簽名的,所以會顯示“Unsigned/未簽名”紅色提示,并且安裝的時候還會多出一部警告界面啊掏;
四蠢络、服務器接收返回數(shù)據(jù)
設置好mobileconfig文件中的URL,并且下載安裝mobileconfig之后,iOS設備會POST XML數(shù)據(jù)流給你的URL
receive.php
<?php
$data = file_get_contents('php://input');
//這里可以進行xml解析
//header("Location: http://dev.skyfox.org/udid?data=".rawurlencode($data)); //有人說必須得目錄形式才會安裝成功
header('HTTP/1.1 301 Moved Permanently'); //這里一定要301跳轉(zhuǎn),否則設備安裝會提示"無效的描述文件"
header("Location: http://dev.skyfox.org/udid/index.php?".$params);
?>
java版本receive.do
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setContentType("text/html;charset=UTF-8");
request.setCharacterEncoding("UTF-8");
//獲取HTTP請求的輸入流
InputStream is = request.getInputStream();
//已HTTP請求輸入流建立一個BufferedReader對象
BufferedReader br = new BufferedReader(new InputStreamReader(is,"UTF-8"));
StringBuilder sb = new StringBuilder();
//讀取HTTP請求內(nèi)容
String buffer = null;
while ((buffer = br.readLine()) != null) {
sb.append(buffer);
}
String content = sb.toString().substring(sb.toString().indexOf("<?xml"), sb.toString().indexOf("</plist>")+8);
//content就是接收到的xml字符串
//進行xml解析即可
String udid =
response.setStatus(301); //301之后iOS設備會自動打開safari瀏覽器
response.setHeader("Location", "http://192.168.1.106:8080/udid.jsp?UDID="+udid);
//http://192.168.1.106:8080/udid.jsp 是用于顯示udid的頁面,也可以利用之前的下載mobileprofile文件頁面
}
注意:重定向一定要使用301重定向,有些重定向默認是302重定向,這樣就會導致安裝失敗,設備安裝會提示"無效的描述文件
以下是返回數(shù)據(jù)的格式
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IMEI</key>
<string>12 123456 123456 7</string>
<key>PRODUCT</key>
<string>iPhone8,1</string>
<key>UDID</key>
<string>b59769e6c28b73b1195009d4b21cXXXXXXXXXXXX</string>
<key>VERSION</key>
<string>15B206</string>
</dict>
</plist>
參考鏈接:
http://www.joshwright.com/tips/getting-an-iphone-udid-from-mobile-safari
https://discussions.apple.com/thread/3089948?start=0&tstart=0