Segment Targeting
AppLovin MAX SDK 12.6.0 版本引入了一种保护隐私安全的方式来定向瀑布流。此版本中引入的 API 通过使用通用键-值数字配对方法作为目标。 您负责映射代表您目标用户的细分键和适用的值。
您可以选择不按细分定位 (Do Not Enable),或者选择按细分定位 (Enable),然后输入应用传递给 MAX 的这些数字映射的子集,作为符合以下规则的 «segment»:«value» 配对:
- You must put a plus (to indicate inclusion) or minus (to indicate exclusion) in front of each segment.
- 对某个属性值进行负向定向,请在细分前面加上
-(例如,-849:2定位到细分849不具有值2的设备)。 - To target a set of values for one segment, pass each value with the segment individually.
The following example matches campaigns for which the value of the
849segment is 1, 2, or 3:+849:1, +849:2, +849:3 - There is no way to target a range of values (other than by targeting each value in the range individually, or negatively targeting each value outside the range).
- The comma in comma-separated values functions as an ∨ (or) operator.
A new line functions as an ∧ (and) operator. So, for example,
means [( §849≡1 ) ∨ ( §850≡2 )] ∧ [( §849≡1 ) ∨ ( §851≡3 )].+849:1,+850:2+849:1,+851:3
- The minimum segment value is
0; the maximum is32000.