appnext.setRewardsCustomParameter()

Type Function
Return value none
Revision Release 2024.3703
Keywords ads, advertising, Appnext, setRewardsCustomParameter
See also appnext.getRewardsCustomParameter()
appnext.*

Overview

Effects rewarded ads only. Pass any custom value/data.

Syntax

appnext.setRewardsCustomParameter( adKey, rewardsCustomParameter )
adKey (required)

String. The ad key returned for a previously created ad.

rewardsCustomParameter (required)

String. The rewards custom parameter to be sent for the ad.

Example

local appnext = require( "plugin.appnext" )

local function adListener( event )
    print( "Received " .. event.event .. " for " .. event.adKey .. " with message: " .. event.message )
end

-- Initialize the Appnext plugin
appnext.init( adListener )

-- Create your ads
local rewardedPlacementID

local platform = system.getInfo( "platformName" )
if ( platform == "iPhone OS" ) then
    rewardedPlacementID = "YOUR_IOS_REWARDED_PLACEMENT_ID"
elseif ( platform == "Android" ) then
    rewardedPlacementID = "YOUR_ANDROID_REWARDED_PLACEMENT_ID"
end

local rewardedAdKey = appnext.createAd( "rewarded", rewardedPlacementID )

appnext.setRewardsCustomParameter( rewardedAdKey, "YOUR_REWARDS_CUSTOM_PARAMETER" )