首先,去字节小程序开发者管理后台申请流量王,申请好了后,进入流量王管理页面

小程序接入:

<template>
  <view class="content">
	  <text>答题结束</text>
	  <button>提交</button>
  </view>
</template>

<script>
   const videoAd = tt.createRewardedVideoAd({
     adUnitId: "" //激励视频广告id
   });
   
   videoAd.show().then(() => {
     console.log("视频广告展示");
   });
   
	 videoAd.onError((err) => {
               console.log('加载异常', err)
	 });
	 videoAd.onClose((res) => {
	   console.log('关闭', res)
	 });
   
</script>
<style>
	.content{
		margin-top: 100px;
	}
</style>

用字节开发者工具运行真机调试