0

こんにちは、Apple ダイレクト ホストからの imei チェックのソース コードが必要です: https://selfsolve.apple.com/warrantyChecker.do?sn=IMEI

System.Net のインポート

Public Class Form1 '値を取得 Private WithEvents webclient As New webclient Public Function getresult(ByVal url As String) As String Return New System.Text.UTF8Encoding().GetString(webclient.DownloadData(url)) End Function

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    TextBox2.Text = getresult("https://selfsolve.apple.com/warrantyChecker.do?sn=" + TextBox1.Text)
End Sub

クラス終了

私はこのスクリプトを使用しますが、ウェブページから生のデータを取得する場合 (テキストボックスでは、データの例ではなくソースコードを参照してください (IMEI、MODEL、Carrier など...)、独自のソフトウェアまたは PHP スクリプトを作成するのを手伝ってください。

4

1 に答える 1

1

あなたの質問は実際には質問ではありません。それはより多くの課題です。

その URL は、解析する必要がある JSONP オブジェクトを返します。

JSON オブジェクトを解析する方法を示すために php スクリプトが必要だと言うので、これを行うために必要なものは次のとおりです。

<?php
$sn = $_GET['sn'];
//load the input (the serial number), you should then perform input filtering on the SN by filtering out non required characters

$o = file_get_contents("https://selfsolve.apple.com/warrantyChecker.do?sn=".$sn);
//fetch the URL's response body into a variable

$o = json_decode($o, true);
//decode the json object into an array

print_r($o);
//recursively print the array to show you what's inside the array
?>

それを呼び出すには:scriptname.php?sn=ENTER_SN_HERE

于 2012-06-22T09:36:09.313 に答える