userIds
List of identifiers for additional extended IDs on the Identity Service. The data type of userIds is a list of UserIdType.
This option won't be saved; instead, it will be sent to the server with each new ad request.
// For the ad request
AdService.setAdRequestGlobalParameter(
AdRequestGlobalParameters::userIds,
listOf(UserIdType.Idfa("AAAA"), UserIdType.Netid("BBBB"))
)
// For the tag and tracking requests
AdService.setTrackingGlobalParameter(
TrackingGlobalParameters::userIds,
listOf(UserIdType.Idfa("AAAA"), UserIdType.Netid("BBBB"))
)
Content copied to clipboard