News Feed integration
This article covers how to set up a News Feed for the Unity platform.
News Feed is being deprecated. Braze recommends that customers who use our News Feed tool move over to our Content Cards messaging channel—it’s more flexible, customizable, and reliable. Check out the migration guide for more.
Receiving News Feed data in Unity
You may register Unity game objects to be notified of incoming News Feed cards.
On iOS, we recommend setting game object listeners from the Braze configuration editor.
On Android, set com_braze_feed_listener_callback_method_name
and com_braze_feed_listener_game_object_name
in your Unity project’s braze.xml
.
To configure your game object listener at runtime on either platform, use AppboyBinding.ConfigureListener()
and specify BrazeUnityMessageType.NEWS_FEED
.
Parsing cards
Incoming string
messages received in your game object callback can be parsed into our pre-supplied Feed object, which has a list of Card objects for convenience.
See the following example for details:
Example callback
1
2
3
4
5
6
7
void FeedReceivedCallback(string message) {
Feed feed = new Feed(message);
Debug.Log("Feed received: " + feed);
foreach (Card card in feed.Cards) {
Debug.Log("Card: " + card);
}
}
Refreshing the News Feed
To refresh the News Feed from Braze, call either of the following methods:
1
2
3
4
// results in a network request to Braze
AppboyBinding.RequestFeedRefresh()
AppboyBinding.RequestFeedRefreshFromCache()
Both methods will notify your News Feed listener and pass the News Feed along to your callback method.
Analytics
Clicks and impressions must be manually logged for cards not displayed directly by Braze.
Use LogClick()
and LogImpression()
on Card to log clicks and impressions for specific cards.
To log that the user viewed the feed as a whole, call AppboyBinding.LogFeedDisplayed()
.