app store connect - How to retrieve the uploaded App URL after using upload_to_testflight in fastlane? - Stack Overflow

admin2025-05-02  2

I am using Fastlane's upload_to_testflight action to upload an app to TestFlight. Here is my current implementation:

upload_to_testflight(
  skip_waiting_for_build_processing: true,
  api_key_path: options[:api_key_path],
  ipa: options[:ipa_path]
)

I want to retrieve or programmatically construct the TestFlight URL after the upload is complete.

A typical TestFlight URL looks like this:

/<app_id>?build=<build_number>

(I have to add i'm not sure if those values are corresponds with "app_id" and "build_number")

Is there a way to directly retrieve the TestFlight URL using Fastlane or another method?

If not, can I programmatically construct the URL? Can I extract the app_id and build_number after uploading to TestFlight?

Any help is greatly appreciated. Thank you!

转载请注明原文地址:http://www.anycun.com/QandA/1746121197a91963.html