Difference between revisions of "FBInstant.getRewardedVideoAsync"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 +
<languages />
 
'''<translate>Available since</translate>:''' Gideros 2018.3<br/>
 
'''<translate>Available since</translate>:''' Gideros 2018.3<br/>
 
'''<translate>Class</translate>:''' [[Special:MyLanguage/* Initialisation and Core|* Initialisation and Core]]<br/>
 
'''<translate>Class</translate>:''' [[Special:MyLanguage/* Initialisation and Core|* Initialisation and Core]]<br/>
Line 6: Line 7:
 
Attempt to create an instance of rewarded video. This instance can then be preloaded and presented.<br />
 
Attempt to create an instance of rewarded video. This instance can then be preloaded and presented.<br />
 
<br /></translate>
 
<br /></translate>
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
  FBInstant.getRewardedVideoAsync(placementID,callback)
 
  FBInstant.getRewardedVideoAsync(placementID,callback)
</source>
+
</syntaxhighlight>
 
=== <translate>Parameters</translate> ===
 
=== <translate>Parameters</translate> ===
 
'''placementID''': (string) <translate>The placement ID that's been setup in your Audience Network settings.</translate> <br/>
 
'''placementID''': (string) <translate>The placement ID that's been setup in your Audience Network settings.</translate> <br/>
Line 14: Line 15:
 
=== <translate>Examples</translate> ===
 
=== <translate>Examples</translate> ===
 
'''Example'''<br/>
 
'''Example'''<br/>
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
FBInstant.getRewardedVideoAsync("my_placement_ad", function(result,error)
 
FBInstant.getRewardedVideoAsync("my_placement_ad", function(result,error)
 
print("getRewardedVideoAsync result:",result)
 
print("getRewardedVideoAsync result:",result)
 
end)
 
end)
<br/></source>
+
<br/></syntaxhighlight>
 
'''Example 2'''<br/>
 
'''Example 2'''<br/>
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
FBInstant.getRewardedVideoAsync("my_placement_ad", function(result,error)
 
FBInstant.getRewardedVideoAsync("my_placement_ad", function(result,error)
 
advert = result -- make a global of the result
 
advert = result -- make a global of the result
Line 30: Line 31:
 
end)
 
end)
 
end)
 
end)
<br/></source>
+
<br/></syntaxhighlight>
 +
 
 +
{{FBInstant}}

Latest revision as of 15:27, 13 July 2023


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/>