Does iTunes Connect offer API for managing external testers from tools?

£可爱£侵袭症+ 提交于 2019-12-08 16:41:52

问题


iTunes Connect provides a browser-based UI for adding and removing external testers for apps that are in beta test, using Apple's new version of Test Flight.

Is there a way to access this functionality without using the web UI -- for instance, with a command line tool?

It seems like Apple doesn't provide an official API for accessing iTunes Connect programmatically. But a little googling suggests that iTunes Connect is an AngularJS app that talks to a JSON API. Are there any open source projects or working code snippets that show how to use the API?

I am specifically interested in managing external testers, not automating the upload of builds to iTunes Connect.


回答1:


developer of fastlane here. I took a closer look at how iTunes Connect works with beta testers and added a new commit for you.

Here is more information about how to use the API: https://github.com/fastlane/itc-api-docs#register-new-external-beta-tester

Let me know if there is anything missing




回答2:


For everything non-sales related, you might want to check out the unoffical documentation of the iTunes Connect JSON API: https://github.com/fastlane/itc-api-docs

please read also : There's no API for iTunes connect, the only way you can access the information is through the web or with a program that scrapes the web pages. If you want to create something in Objective-C, download AppSales from github, it's an iPhone app which downloads financial reports from ITC (or maybe itts). You can download it and install it on your iPhone if you have an Apple developer account. You can look through their code and see how they scrape the daily and weekly reports (hint: it's ugly).

http://github.com/omz/AppSales-Mobile

Note that if you try to create an iPhone app to do this, Apple will reject it. It breaks the rule about "No public API". Other people have tried this and been rejected.

If you're just looking for software to do this on your computer, I'd highly recommend AppViz

http://www.ideaswarm.com/products/appviz/

Here's a nice post which compares these and more apps:

http://www.markj.net/sales-stats-tools-for-iphone-apps/




回答3:


iTunes Connect is being renamed App Store Connect and will soon be getting an official API for this functionality. More information on this API is only available in the 2018 WWDC Video: Automating App Store Connect. There is currently no published date as to when this new REST API will become available.




回答4:


There are some ruby gems used for interfacing with the iTMSTransporter.

iTMSTransporter is the base external tool for the iTunesConnect api.

Here are the ruby gems

FastLane

Deliver

fastlane and deliver make it easier.

These gems are useful and can also upload metadata, and images etc.

iTMSTransporter -help [command]

Hope this would be helpful




回答5:


There are 2 more tools powered by the fastlane toolchain: - Pilot: The best way to manage your TestFlight testers and builds from your terminal - Boarding (Instantly create a simple signup page for TestFlight beta testers)

Fastlane can be found here: https://github.com/KrauseFx/fastlane




回答6:


Apple has published APIs for app store connect. By using these APIs you can perform TestFlight related operations like add/delete testers or submit build for review etc. You can find more details here: https://developer.apple.com/documentation/appstoreconnectapi/testflight



来源:https://stackoverflow.com/questions/29780016/does-itunes-connect-offer-api-for-managing-external-testers-from-tools

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!