2

有没有办法系统地检索一个应用程序(或数百个)的所有屏幕截图(3.5 英寸 iPhone、4 英寸 iPhone 和 ipad)?

如果 4 英寸屏幕截图可用,iTunes 搜索 API 似乎不会返回 3.5 英寸屏幕截图。

我在另一个线程中看到了一种方法,但它不可靠(无法让它为 5 个单独的应用程序工作)。

我愿意使用 iTMSTransporter CLI,尽管我在 AppMetadataSpecification5.1Revision1.pdf 和 Transporter_User_Guide_1.7.9.pdf 的约 190 页中找不到任何有用的东西。如果您想要这些 pdf(并安装了 xcode),请运行:

./iTMSTransporter -m downloadMetadataGuides -u [itunes username] -p [itunes pw] -vendor_id [vendor_id] -destination .

从:

/Applications/Xcode.app/Contents/Applications/Application\ Loader.app/Contents/MacOS/itms/bin

任何见解将不胜感激!

4

1 回答 1

0

可以使用非官方的 iTunes Connect API 访问所有屏幕截图:

https://itunesconnect.apple.com//WebObjects/iTunesConnect.woa/ra/apps/version/[app_id]

它包含原始格式的所有分辨率的所有现有屏幕截图。

不幸的是,我还没有找到一种将语言与 iTunes Transporter 使用的语言进行映射的方法。

有一个拉取请求,将此功能添加到deliverhttps ://github.com/fastlane-old/deliver/pull/113/files

更新:可以在这里找到语言代码到语言的映射:https ://raw.githubusercontent.com/fastlane-old/deliver/d9a43d3342e6b1d8ddac802e6557e482932a9ac2/lib/assets/DeliverLanguageMapping.json

于 2015-02-23T14:08:56.567 回答