Difference between revisions of "FBInstant.getRewardedVideoAsync"

From GiderosMobile
Line 2: Line 2:
 
'''Available since:''' Gideros 2018.3<br/>
 
'''Available since:''' Gideros 2018.3<br/>
 
=== Description ===
 
=== Description ===
<br />
+
<translate><br />
 
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 />
+
<br /></translate>
 
<source lang="lua">
 
<source lang="lua">
 
  FBInstant.getRewardedVideoAsync(placementID,callback)
 
  FBInstant.getRewardedVideoAsync(placementID,callback)
 
</source>
 
</source>
 
=== Parameters ===
 
=== Parameters ===
'''placementID''': (string) The placement ID that's been setup in your Audience Network settings. <br/>
+
'''placementID''': (string) <translate>The placement ID that's been setup in your Audience Network settings.</translate> <br/>
'''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. <br/>
+
'''callback''': (function) <translate>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.</translate> <br/>
 
=== Examples ===
 
=== Examples ===
 
'''Example'''<br/>
 
'''Example'''<br/>
<source lang="lua"><br />
+
<source 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)
Line 19: Line 19:
 
<br/></source>
 
<br/></source>
 
'''Example 2'''<br/>
 
'''Example 2'''<br/>
<source lang="lua"><br />
+
<source 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

Revision as of 14:32, 23 August 2018

Available since: Gideros 2018.3

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