After you have integrated the Salesforce Audience Studio SDK into your app, check the following to ensure data collection and usage functions properly before publishing to your users.
With a device simulator or viewing requests via a network proxy (such as the Charles Proxy), check the following after building your app with Audience Studio.
- config load
This is the request on SDK initialization at app open.https://cdn.krxd.net/controltag/config/<APP CONFIG ID>?mobile=1
- Optout check
This checks if the device ID has been opted out of Audience Studio tracking through DAA's AppChoices. If so, an "optout" ID will be sent for that device to Audience Studio, therefore not making it identifiable.https://cdn.krxd.net/userdata/optout/status?users=
- userdata
This returns the users segments to the app for usage. There is a 20 minute cache per request, therefore do not expect to see it on every load.
For new integrations, its is expected to not be part of segments. This is because segments have either not been created, or the device has not been processed to be associated to segments.http://cdn.krxd.net/userdata/get?pub=<PUBLISHER ID>;_kuid=<IDFA>
- pixel.gif
This is the request when callingtrackPageView
. It includes a set of default device and configuration information. More importantly, all user data in the parameters&kua<name>
(user attribute) and&kpa<name>
(page attribute). Be sure to check that the attribute names and values match the specified data plan.https://beacon.krxd.net/pixel.gif?...
- event.gif (if used)
This is thefireEvent
request. Ensure the event uid is included and any event attributes are part of the request.https://beacon.krxd.net/event.gif?event_uid=<EVENT ID>&...
- Google DFP integration (if DFP custom key targeting is used)
For DFP specifically, look for a request tog.doubleclick.net
. Check for the Audience Studio segments to be passed in the&cust_param
as this key-value:ksg=<SEGMENT IDs>
- transaction.gif (if used)
This request is sent after a purchase is made to capture price, quantity by order date.
0 Comments