[iOS]如何向 appstore 查詢發行 APP 的資訊?

來源:互聯網
上載者:User

如果我們需要實現版本的 app 自動更新,那麼我們需要擷取當前運行程式的版本資訊和 appstore 裡發布的最新版本資訊。

當前運行程式的版本資訊,可以在 mainBundle 裡面擷取:

[cpp]
view plaincopyprint?
  1. NSDictionary *infoDict = [[NSBundle mainBundle] infoDictionary];  
  2.     NSString *currentVersion = [infoDict objectForKey:@"CFBundleVersion"];  

而 appstore 裡發布的最新版本資訊擷取稍微複雜一些,有兩種方案,思路都是一樣的:

其一:在某個伺服器上儲存最新發行的版本資訊,需要的時候向該伺服器查詢;

其二:在需要的時候向 appstore 查詢;

在這裡我來介紹第二種方法:向 appstore 查詢應用程式資訊,包括作者,版本,app 介紹頁面地址等資訊。

英文好的同學可以參考 apple 的文檔:www.apple.com/itunes/affiliates/resources/documentation/itunes-store-web-service-search-api.html

具體步驟如下:

1,用 POST 方式發送請求:

http://itunes.apple.com/search?term=你的應用程式名稱&entity=software

更加精準的做法是根據 app 的 id 來尋找:

http://itunes.apple.com/lookup?id=你的應用程式的ID

2,從獲得的 response 資料中解析需要的資料。因為從 appstore 查詢得到的資訊是 JSON 格式的,所以需要經過解析。解析之後得到的未經處理資料就是如下這個樣子的:

[html]
view plaincopyprint?
  1. {  
  2.     resultCount = 1;  
  3.     results =     (  
  4.                 {  
  5.             artistId = 301724683;  
  6.             artistName = Citibank;  
  7.             artistViewUrl = "http://itunes.apple.com/us/artist/citibank/id301724683?uo=4";  
  8.             artworkUrl100 = "http://a5.mzstatic.com/us/r1000/117/Purple/a1/85/a9/mzl.hvwnfdkw.png";  
  9.             artworkUrl512 = "http://a5.mzstatic.com/us/r1000/117/Purple/a1/85/a9/mzl.hvwnfdkw.png";  
  10.             artworkUrl60 = "http://a2.mzstatic.com/us/r1000/099/Purple/67/86/7e/mzi.utfdvrgy.png";  
  11.             averageUserRating = "3.5";  
  12.             averageUserRatingForCurrentVersion = 5;  
  13.             contentAdvisoryRating = "4+";  
  14.             currency = USD;  
  15.             description = "Description of you app.";  
  16.             features =             (  
  17.                 iosUniversal  
  18.             );  
  19.             fileSizeBytes = 4141195;  
  20.             genreIds =             (  
  21.                 6015  
  22.             );  
  23.             genres =             (  
  24.                 Finance  
  25.             );  
  26.             ipadScreenshotUrls =             (  
  27.                 "http://a1.mzstatic.com/us/r1000/095/Purple/e0/a6/17/mzl.pbbxcjzt.1024x1024-65.jpg",  
  28.                 "http://a3.mzstatic.com/us/r1000/036/Purple/cc/14/98/mzl.dyairego.1024x1024-65.jpg"  
  29.             );  
  30.             isGameCenterEnabled = 0;  
  31.             kind = software;  
  32.             languageCodesISO2A =             (  
  33.                 EN  
  34.             );  
  35.             price = 0;  
  36.             primaryGenreId = 6015;  
  37.             primaryGenreName = Finance;  
  38.             releaseDate = "2011-01-24T06:14:35Z";  
  39.             releaseNotes = "* View Real-time streaming prices for U.S. Treasuries \n\n* Open and Save your Citi Research in your favorite PDF Reader and Library such as iBooks\n\n* Search for your favorite videos";  
  40.             screenshotUrls =             (  
  41.                 "http://a3.mzstatic.com/us/r1000/066/Purple/17/51/fb/mzl.zywiavgn.png",  
  42.                 "http://a5.mzstatic.com/us/r1000/026/Purple/73/85/97/mzl.csmdtndk.png"  
  43.             );  
  44.             sellerName = "Citibank, N.A.";  
  45.             sellerUrl = "http://";  
  46.             supportedDevices =             (  
  47.                 all  
  48.             );  
  49.             trackCensoredName = "Citi Velocity";  
  50.             trackContentRating = "4+";  
  51.             trackId = 414697122;  
  52.             trackName = "Citi Velocity";  
  53.             trackViewUrl = "http://itunes.apple.com/us/app/citi-velocity/id414697122?mt=8&uo=4";  
  54.             userRatingCount = 5;  
  55.             userRatingCountForCurrentVersion = 1;  
  56.             version = "1.4";  
  57.             wrapperType = software;  
  58.         }  
  59.     );  
  60. }  

然後從中取得 results 數組即可,具體代碼如下所示:

[cpp]
view plaincopyprint?
  1. NSDictionary *jsonData = [dataPayload JSONValue];  
  2. NSArray *infoArray = [jsonData objectForKey:@"results"];  
  3. NSDictionary *releaseInfo = [infoArray objectAtIndex:0];  
  4. NSString *latestVersion = [releaseInfo objectForKey:@"version"];  
  5. NSString *trackViewUrl = [releaseInfo objectForKey:@"trackViewUrl"];  

如果你拷貝 trackViewUrl 的實際地址,然後在瀏覽器中開啟,就會開啟你的應用程式在 appstore 中的介紹頁面。當然我們也可以在代碼中調用 safari 來開啟它。

[cpp]
view plaincopyprint?
  1. UIApplication *application = [UIApplication sharedApplication];  
  2. [application openURL:[NSURL URLWithString:trackViewUrl]]; 

轉載:http://blog.csdn.net/kesalin/article/details/6605934

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.