react-native-admob / admob

Admob for React Native with powerful hooks and components

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Can't get serverSideVerificationOptions data in server side callback

Ggayane opened this issue · comments

Hi, I'm trying to implement rewarded adds (using both RewardedAd and useRewardedAd), passing requestOptions with serverSideVerificationOptions, passing userId but don't get any data when my server side verification callback function fires.
Can you please tell what can be the problem connected with?

Hi, did you resolved the issue? What was the problem?

Hi, yes, I'm not sure if it's a bug or not, but I was calling RewardedAd.createAd() with all needed options (with serverSideVerificationOptions) after which I was calling load() method without any option, because I've already had the created ad with needed options.

Calling load method with options solved the problem. The final code example:

  const rewardedAd = RewardedAd.createAd(unitId);
  await rewardedAd.load({
    serverSideVerificationOptions: {
      userId,
    },
  });
  return rewardedAd.show();