Targeting: Audiences
You can customize user content according to the criteria you specify in the JOIN studio. On the mobile side, to take into account audience-specific content, you can add a key/value object when sending the request.
Language stories
By default, the feature uses the phone's language to automatically manage multi-language stories.
If you want a different default language (e.g. that of the app), you can override thelanguage
key
Trigger mode
trigger.init = JOINStoriesInit(
"<your_join_alias>",
customParameters = mapOf(
"key1" to "value1",
"key2" to "value2",
"key3" to "value3,value4"
)
)
Standalone mode
JOINStories.startPlayer(
context,
"<your_join_alias>",
customParameters = mapOf(
"key1" to "value1",
"key2" to "value2",
"key3" to "value3,value4"
)
)
Updated 24 days ago