Difference between revisions of "FBInstant.getInterstitialAdAsync"

From GiderosMobile
Line 8: Line 8:
 
  FBInstant.getInterstitialAdAsync(placementID,callback)
 
  FBInstant.getInterstitialAdAsync(placementID,callback)
 
</source>
 
</source>
'''placementID''': (string) The placement ID that's been setup in your Audience Network settings. ''''''<br/>
+
=== Parameters ===
'''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/>
+
'''placementID''': (string) The placement ID that's been setup in your Audience Network settings. <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/>
 +
=== Examples ===
 +
'''Example'''<br/>
 +
<source lang="lua"><br />
 +
FBInstant.getInterstitialAdAsync("my_placement_ad", function(result,error)
 +
print("getInterstitialAdAsync result:",result)
 +
end)
 +
<br/></source>
 +
'''Example 2'''<br/>
 +
<source lang="lua"><br />
 +
FBInstant.getInterstitialAdAsync("my_placement_ad", function(result,error)
 +
print("id:",result.getPlacementID()) -- the Audience Network placement ID of this ad instance.
 +
result:loadAsync( function ()  -- Preload the ad. The returned promise resolves when the preload completes, and rejects if it failed.
 +
print("Advert loaded!")
 +
end)
 +
end)
 +
<br/></source>

Revision as of 11:44, 23 August 2018

Available since: Gideros 2018.3

Description


Attempt to create an instance of interstitial ad. This instance can then be preloaded and presented.

 FBInstant.getInterstitialAdAsync(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

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

Example 2

<br />
FBInstant.getInterstitialAdAsync("my_placement_ad", function(result,error)
	print("id:",result.getPlacementID()) -- the Audience Network placement ID of this ad instance.
	result:loadAsync( function ()  -- Preload the ad. The returned promise resolves when the preload completes, and rejects if it failed.
		print("Advert loaded!")
	end)
end)
<br/>