如何跟踪用户没有看完就关闭了奖励视频? (铁源)

How can I track that the user closed the rewarded video without watching it to the end? (IronSource)

我正在使用 IronSource,但看不出如何跟踪用户在没有看完奖励视频的情况下关闭了它。我需要这个来进行分析,如果用户没有看完奖励视频,但关闭了它,但没有收到奖励,我必须发送一个事件。

您需要实施奖励视频事件,如下所述:https://developers.ironsrc.com/ironsource-mobile/unity/rewarded-video-integration-unity/

您需要那些活动:

void Init()
{
    // IronSource initialization code

    // add callbacks to events;
    IronSourceEvents.onRewardedVideoAdClosedEvent += RewardedVideoAdClosedEvent; 
    IronSourceEvents.onRewardedVideoAdRewardedEvent += RewardedVideoAdRewardedEvent;
} 

void RewardedVideoAdClosedEvent()
{
}

void RewardedVideoAdRewardedEvent(IronSourcePlacement ssp)
{
}

如果我没理解错的话,即使广告因奖励而关闭也可以触发广告关闭,因此在这种情况下您需要实施逻辑来过滤分析事件。