ittybittyapps / appstoreconnect-cli

An easy to use command-line tool for interacting with the Apple AppStore Connect API
MIT License
174 stars 17 forks source link

Get a Provisioning Profile by UUID #211

Closed orj closed 4 years ago

orj commented 4 years ago

🗣 Context

When fetching specific profiles.

💬 Narrative

As a user I want to be able to fetch a provisioning profile by uuid So that I can download a single profile

📝 Notes

If I know the UUID of a provisioning profile I think it would be useful to be able to download just that single profile.

🎨 Design

asc profiles read [--api-issuer <uuid>] [--api-key-id <keyid>] [--csv] [--json] [--table] [--yaml] [--download-path <path>] <uuid>

✅ Acceptance Criteria

GIVEN there is a provisioning profile with the specified uuid WHEN I request that profile THEN The profile information is displayed

GIVEN there is a provisioning profile with the specified uuid WHEN I request that profile and I specify a valid --download-path THEN The profile is saved to the specified <path>

orj commented 4 years ago

This was not actually possible with just the filtering options provided by the API. So instead @DechengMa implemented filtering by resource ID in #216. That will have to do for now.