mirror of
https://github.com/rudrankriyam/App-Store-Connect-CLI.git
synced 2026-04-25 15:45:48 +03:00
[GH-ISSUE #271] Auth: Show explicit storage location in auth status output #86
Labels
No labels
bug
bug
documentation
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/App-Store-Connect-CLI#86
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @rudrankriyam on GitHub (Jan 28, 2026).
Original GitHub issue: https://github.com/rudrankriyam/App-Store-Connect-CLI/issues/271
Problem
When the system keychain is unavailable, the CLI silently falls back to storing credentials in the config file at
~/.asc/config.json. Users may believe their credentials are secured in the system keychain when they are actually stored in a plain JSON file. Theauth statuscommand does not clearly indicate which storage backend is being used.This silent fallback behavior is defined in
internal/auth/keychain.go:250-288:Affected Code
internal/auth/keychain.go:250-288- TheListCredentialsfunction with silent fallbackcmd/auth.go:320-356- Theauth statuscommand output formattingProposed Solution
auth statusto explicitly show the storage backend being usedExample improved
auth statusoutput:Or when using config file fallback:
auth login, inform users where credentials will be stored before savingAcceptance Criteria
auth statusshows the storage backend type (keychain or config file)auth statusshows the storage location pathauth loginconfirms storage location before saving--verboseflag to show additional storage details@rudrankriyam commented on GitHub (Jan 28, 2026):
Closing per request. Reopen if any auth issues remain.