我想在我的本机应用程序中使用react-native-fbads(我从未使用过facebookAds)来插入插页式广告。
这是我在我的一个应用程序组件中完成的(react-native install react-native-fbads
之后):
import { InterstitialAdManager } from 'react-native-fbads';
constructor(props) {
InterstitialAdManager.showAd(XXXXX_XXXXX) // this is line 16
.then(didClick => {console.log("clicked")})
.catch(error => {console.log("error")})
}
但我不断收到此错误:Identifier directly after number(16:49)
。
我的 placementId 在中间有一个下划线(即12345_6789),是否正确?