我可以使用app store connect接口获取用户的team_id吗?我已经看过https://developer.apple.com/documentation/appstoreconnectapi/users了,但是什么也没看到。我不一定需要它为特定的用户,但团队id与该特定的应用程序相关。
发布于 2021-01-13 23:00:17
App Store Connect ID通过issuer-id工作,不再像team_id或portal_team_id那样暴露旧的/旧的标识,类似于fastlane通过web身份验证使用它的方式:https://github.com/fastlane/fastlane/blob/48151291f2c4949c3b1b9919ba2cc81a7cc33293/spaceship/lib/spaceship/portal/spaceship.rb#L42
ASC API密钥只对一个团队有效,因此在API逻辑中,它也不应该访问该信息。
https://stackoverflow.com/questions/65648666
复制相似问题