简体   繁体   English

Apple开发人员连接网站要求我提供的“App Id”是什么?

[英]What is the “App Id” that the Apple developer connection site is asking me for?

I just signed up to be an iPhone Developer. 我刚刚注册成为iPhone开发人员。 What is the "App Id"? 什么是“App Id”? Is it my company name? 这是我公司的名字吗? Is it just my application name? 这只是我的申请名吗? Apple isn't very clear on this. Apple对此并不十分清楚。

Thanks. 谢谢。

I don't think Alex's answer is quite right. 我不认为Alex的答案是完全正确的。

com.myname.MyCoolApplication is the "Bundle ID search string", or "Bundle identifier", depending on which Apple documentation you consult. com.myname.MyCoolApplication是“Bundle ID搜索字符串”或“Bundle identifier”,具体取决于您咨询的Apple文档。

Here are some Apple developer resources: 以下是一些Apple开发人员资源:

To get the full "App ID", you want the Team ID (generated by Apple) plus your Bundle Identifier (created by the developer). 要获得完整的“应用程序ID”,您需要团队ID(由Apple生成)以及您的Bundle Identifier(由开发人员创建)。 Eg, from Q&A QA1713 , 例如,来自Q&A QA1713

Example App ID: ABCDE12345.com.foocompany.appname 示例应用程序ID: ABCDE12345.com.foocompany.appname

  • ABCDE12345 is the Bundle Seed ID (generated by Apple) ABCDE12345是Bundle Seed ID(由Apple生成)
  • com.foocompany.appname is the App ID's Bundle Identifier and needs to be the same as your app's Bundle Identifier com.foocompany.appname是App ID的Bundle Identifier,需要与应用程序的Bundle Identifier相同

Its a namespace for your applications. 它是您的应用程序的命名空间。 For example: 例如:

com.myname.MyCoolApplication

it uses a reverse domain name sort of format with the idea that only 1 person owns a domain at a time. 它使用反向域名格式,一次只有一个人拥有一个域。 You can make an App ID that is a wildcard like: 您可以创建一个通配符的App ID,如:

com.myname.*

And now you can replace anything in the spot of the * creating a suite of applications. 现在,您可以在*创建一套应用程序的位置替换任何内容。

An App ID is an identifier that uniquely identifies the app. 应用程序ID是唯一标识应用程序的标识符。 it may be explicit or wild card. 它可能是明确的或外卡。 explicit means exactly one app. 显式意味着一个应用程序。 if we , rather , want to use the same app id for diffrent apps then use wildcard app id. 如果我们想要为不同的应用程序使用相同的应用程序ID,则使用通配符应用程序ID。 Thanks 谢谢

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Apple Developer - 注册 App ID 下的“字体”功能是什么? - Apple Developer - What is the 'Fonts' Capability under Register an App ID for? 苹果开发者的 App ID 前缀 - App ID Prefix at apple developer 在Apple Developer Portal中创建应用程序ID - Creating App ID in Apple Developer Portal 使用免费的Apple Developer帐户删除App ID - Remove App ID with free Apple Developer Account 如果我更改了与 Apple Developer 帐户关联的 Apple ID,会发生什么? - What will happen if I change apple id associated with Apple Developer account? 使用SKPaymentTransactionObserver打开视图后,应用不断询问Apple ID - App keeps asking for Apple ID after opening view with SKPaymentTransactionObserver SwiftyStoreKit.verifyReceipt 继续要求提供 Apple ID(应用内购买) - SwiftyStoreKit.verifyReceipt Keep asking for Apple ID (In App Purchase) Apple Developer Portal:添加服务 ID 不允许我使用 select “Sign In With Apple” - Apple Developer Portal: Adding a Services ID does not allow me to select “Sign In With Apple” 无法从Apple开发人员中心删除App ID - Can't delete App ID from Apple Developer Center iTunesConnect中的“ Apple ID”是否与developer.apple.com中的“ App ID”不同? - Is the “Apple ID” in iTunesConnect different from “App ID” in developer.apple.com?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM