FBInstant.getRewardedVideoAsync

From GiderosMobile
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
This page contains changes which are not marked for translation.


Available since: Gideros 2018.3
Class: * Initialisation and Core

Description


Attempt to create an instance of rewarded video. This instance can then be preloaded and presented.

 FBInstant.getRewardedVideoAsync(placementID,callback)

Parameters

placementID: (string) The placement ID that's been setup in your Audience Network settings.
callback: (function) A function that will be called with two arguments: Resolves with a #adinstance, or rejects with a #apierror if it couldn't be created. An error code if the function failed.

Examples

Example

FBInstant.getRewardedVideoAsync("my_placement_ad", function(result,error)
	print("getRewardedVideoAsync result:",result)
end)
<br/>

Example 2

FBInstant.getRewardedVideoAsync("my_placement_ad", function(result,error)
	advert = result -- make a global of the result
	advert:loadAsync( function ()  -- Preload the reward advert.
		print("Advert loaded!")
		advert:showAsync( function () -- show the reward advert.
			print("Reward advert watched!")
		end)
	end)
end)
<br/>