How can I find my Apple Developer Team id and Team Agent Apple ID?

后端 未结 6 574
一向
一向 2021-01-30 12:18

I am trying to transfer an app. I am having troubles finding my team agent apple id and my team id. I have found it before and I have searched for 30 min without any luck now

相关标签:
6条回答
  • 2021-01-30 12:39

    For personal teams

    grep DEVELOPMENT_TEAM MyProject.xcodeproj/project.pbxproj
    

    should give you the team ID

    DEVELOPMENT_TEAM = ZU88ND8437;
    
    0 讨论(0)
  • 2021-01-30 12:45

    Apple has changed the interface.

    The team ID could be found via this link: https://developer.apple.com/account/#/membership

    0 讨论(0)
  • 2021-01-30 12:50

    There are ways you can check even if you are not a paid user. You can confirm TeamID from Xcode. [Build setting] Displayed on tooltip of development team.

    0 讨论(0)
  • 2021-01-30 12:51

    You can find the Team ID via this link: https://developer.apple.com/membercenter/index.action#accountSummary

    0 讨论(0)
  • 2021-01-30 12:54

    You can find your team id here:

    https://developer.apple.com/account/#/membership

    This will get you to your Membership Details, just scroll down to Team ID

    0 讨论(0)
  • 2021-01-30 12:55

    If you're on OSX you can also find it your keychain. Your developer and distribution certificates have your Team ID in them.

    Applications -> Utilities -> Keychain Access.

    Under the 'login' Keychain, go into the 'Certificates' category.

    Scroll to find your development or distribution certificate. They will read:

    iPhone Distribution: Team Name (certificate id)

    or

    iPhone Developer: Team Name (certificate id)

    Simply double-click on the item, and the

    "Organizational Unit"

    is the "Team ID"

    Note that this is the only way to find your

    "Personal team" ID

    You can not find the "Personal team" ID on the Apple web interface.

    For example, if you are automating a build from say Unity, during development you'll want it to appear in Xcode as your "Personal team" - this is the only way to get that value.

    0 讨论(0)
提交回复
热议问题