Firebase 动态链接 ITC 分析设置
Firebase Dynamic Links ITC Analytics Settings
使用 Firebase Dynamic Links API 构建 Dynamic Link 时,属性 分组之一是 ITunesConnectAnalyticsParameters
。它列出了以下设置:
- AffiliateToken:用于创建附属编码 links 的附属令牌。
- CampaignToken:开发人员可以添加到任何 link 以跟踪特定营销活动的销售额的活动令牌。
- ProviderToken:从 iTunes Connect 中启用动态 Links 分析的提供商令牌。
这些值是什么?我如何知道将它们设置为什么?
总结
- 附属令牌:如果您使用 Firebase 动态链接 API 构建这些 link 之一,这可能是不必要的,除非您打算为 link 提供货币信贷到另一个实体。我没有找到如何为任何给定实体获取此值。
- Campaign Token:这可以是任何值,它会显示在您的 iTunes Connect 控制面板中,附加到与此 link 一起发生的任何分析事件。
- Provider Token:应该是 iTunes Connect 仪表板的 App Analytics 中可用的唯一提供商 ID。访问
iTunes Connect
> App Analytics
> [Your App]
> Sources
> Campaigns
> Generate a Campaign Link
找到你的。
提供商 ID:
This parameter is for app developers only. Apple's developer portal, iTunes Connect, includes analytics that help developers track additional data related to their apps. Each developer has a unique provider token that can be found in the App Analytics section of iTunes Connect. When added to an iTunes URL, a provider token enables analytics for those links from within iTunes Connect.
App developers were assigned provider IDs as part of the roll out of iTunes Connect Analytics. Sign into iTunes Connect with your Apple developer credentials and select the App Analytics section of iTunes Connect. Select one of your apps and then the "Top Campaigns" tab. Finally, select "Generate a Campaign Link." Your provider ID should be listed right next to your app's Apple ID. Searchr will add your provider ID to links it generates, which will allow you to track clicks on links for apps you own via iTunes Connect Analytics.
[In reference to Fastlane]
When you have multiple accounts, you need to collect 3 pieces of information.
- team_id which is the 10-character string
- itc_team_id which is the numeric itunes connect team id
- itc_provider_id which in newer accounts matches team_id, but for older accounts is a slug for the business name. (e.g. AwesomeOrgLLC)
[Examples]
- app_team_id = 'AB83BKF89B'
- itc_team_id = '1384242'
- itc_provider_id = 'AwesomeOrgLLC'
[Also in reference to Fastlane]
The ITC provider ID is sometimes required in order to upload binaries to Apple when you have multiple accounts...the provider ID is distinct from the developer portal team ID and the iTunes Connect team ID.
附属令牌:
You need an affiliate token to get credit in the iTunes affiliate program...
To create affiliate-coded links simply add to the end of any iTunes, App Store, iBooks, or Mac App Store URL the parameter “at” and your Affiliate Token.
This is a properly coded affiliate link for the account with Affiliate Token “12345”: https://itunes.apple.com/sg/artist/bruno-mars/id278873078?at=12345
This is the money parameter. If you do not add your affiliate token to a link somewhere after the ?, your link will take people to the intended media, but you won’t earn a commission. Affiliate tokens are composed of two parts. The first part is a series of 1s and 0s that never start with a 0. The second part is a series of alphanumeric characters of varying length that is separated from the first part of the token by a lower case letter “L.” It’s important to recognize that this separator is a lowercase letter “L” because it can be easy to mistake it for a capital letter "I," a number 1, or a pipe “|” character.
The affiliate token is preceded by at= in the full URL. In the Arctic Monkeys example, the affiliate token is 11lbfL and is preceded by &at= because it is not the first parameter in the link.
活动令牌:
You do not need to include a campaign token to get iTunes affiliate program credit, but they are a handy way to track links used in different places. For instance, you might have one campaign token for your blog and another for a Twitter account so you can see how much affiliate traffic each generates.
Campaign Token
The ‘ct’ value is campaign text that you can optionally add to any link in order to track sales from a specific marketing campaign. By using a campaign value, you will see in the reporting dashboard all clicks and sales related to that specific campaign.
For example, the link below has added a campaign tracking parameter for a newsletter link. You can name the campaigns anything you choose, but the ‘ct’ value may not be longer than 40 characters, as noted in the examples from the table above.
使用 Firebase Dynamic Links API 构建 Dynamic Link 时,属性 分组之一是 ITunesConnectAnalyticsParameters
。它列出了以下设置:
- AffiliateToken:用于创建附属编码 links 的附属令牌。
- CampaignToken:开发人员可以添加到任何 link 以跟踪特定营销活动的销售额的活动令牌。
- ProviderToken:从 iTunes Connect 中启用动态 Links 分析的提供商令牌。
这些值是什么?我如何知道将它们设置为什么?
总结
- 附属令牌:如果您使用 Firebase 动态链接 API 构建这些 link 之一,这可能是不必要的,除非您打算为 link 提供货币信贷到另一个实体。我没有找到如何为任何给定实体获取此值。
- Campaign Token:这可以是任何值,它会显示在您的 iTunes Connect 控制面板中,附加到与此 link 一起发生的任何分析事件。
- Provider Token:应该是 iTunes Connect 仪表板的 App Analytics 中可用的唯一提供商 ID。访问
iTunes Connect
>App Analytics
>[Your App]
>Sources
>Campaigns
>Generate a Campaign Link
找到你的。
提供商 ID:
This parameter is for app developers only. Apple's developer portal, iTunes Connect, includes analytics that help developers track additional data related to their apps. Each developer has a unique provider token that can be found in the App Analytics section of iTunes Connect. When added to an iTunes URL, a provider token enables analytics for those links from within iTunes Connect.
App developers were assigned provider IDs as part of the roll out of iTunes Connect Analytics. Sign into iTunes Connect with your Apple developer credentials and select the App Analytics section of iTunes Connect. Select one of your apps and then the "Top Campaigns" tab. Finally, select "Generate a Campaign Link." Your provider ID should be listed right next to your app's Apple ID. Searchr will add your provider ID to links it generates, which will allow you to track clicks on links for apps you own via iTunes Connect Analytics.
[In reference to Fastlane] When you have multiple accounts, you need to collect 3 pieces of information.
- team_id which is the 10-character string
- itc_team_id which is the numeric itunes connect team id
- itc_provider_id which in newer accounts matches team_id, but for older accounts is a slug for the business name. (e.g. AwesomeOrgLLC)
[Examples]
- app_team_id = 'AB83BKF89B'
- itc_team_id = '1384242'
- itc_provider_id = 'AwesomeOrgLLC'
[Also in reference to Fastlane] The ITC provider ID is sometimes required in order to upload binaries to Apple when you have multiple accounts...the provider ID is distinct from the developer portal team ID and the iTunes Connect team ID.
附属令牌:
You need an affiliate token to get credit in the iTunes affiliate program...
To create affiliate-coded links simply add to the end of any iTunes, App Store, iBooks, or Mac App Store URL the parameter “at” and your Affiliate Token.
This is a properly coded affiliate link for the account with Affiliate Token “12345”: https://itunes.apple.com/sg/artist/bruno-mars/id278873078?at=12345
This is the money parameter. If you do not add your affiliate token to a link somewhere after the ?, your link will take people to the intended media, but you won’t earn a commission. Affiliate tokens are composed of two parts. The first part is a series of 1s and 0s that never start with a 0. The second part is a series of alphanumeric characters of varying length that is separated from the first part of the token by a lower case letter “L.” It’s important to recognize that this separator is a lowercase letter “L” because it can be easy to mistake it for a capital letter "I," a number 1, or a pipe “|” character.
The affiliate token is preceded by at= in the full URL. In the Arctic Monkeys example, the affiliate token is 11lbfL and is preceded by &at= because it is not the first parameter in the link.
活动令牌:
You do not need to include a campaign token to get iTunes affiliate program credit, but they are a handy way to track links used in different places. For instance, you might have one campaign token for your blog and another for a Twitter account so you can see how much affiliate traffic each generates.
Campaign Token
The ‘ct’ value is campaign text that you can optionally add to any link in order to track sales from a specific marketing campaign. By using a campaign value, you will see in the reporting dashboard all clicks and sales related to that specific campaign.
For example, the link below has added a campaign tracking parameter for a newsletter link. You can name the campaigns anything you choose, but the ‘ct’ value may not be longer than 40 characters, as noted in the examples from the table above.