appnext.getRewardsTransactionId()

类型 函数
返回值 字符串
修订版本 版本 2024.3703
关键词 广告, Appnext, getRewardsTransactionId
另请参阅 appnext.setRewardsTransactionId()
appnext.*

概述

仅与激励广告相关。获取先前为广告设置的奖励交易 ID。

语法

appnext.getRewardsTransactionId( adKey )
adKey (必需)

字符串。先前创建的广告返回的广告密钥。

示例

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.setRewardsTransactionId( rewardedAdKey, "YOUR_REWARDS_TRANSACTION_ID" )
 
print( "Transaction ID: " .. appnext.getRewardsTransactionId( rewardedAdKey ) )