Difference between revisions of "FBInstant.getInterstitialAdAsync"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
Line 7: Line 7:
 
Attempt to create an instance of interstitial ad. This instance can then be preloaded and presented.<br />
 
Attempt to create an instance of interstitial ad. This instance can then be preloaded and presented.<br />
 
<br /></translate>
 
<br /></translate>
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
  FBInstant.getInterstitialAdAsync(placementID,callback)
 
  FBInstant.getInterstitialAdAsync(placementID,callback)
 
</source>
 
</source>
Line 15: Line 15:
 
=== <translate>Examples</translate> ===
 
=== <translate>Examples</translate> ===
 
'''Example'''<br/>
 
'''Example'''<br/>
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
FBInstant.getInterstitialAdAsync("my_placement_ad", function(result,error)
 
FBInstant.getInterstitialAdAsync("my_placement_ad", function(result,error)
 
print("getInterstitialAdAsync result:",result)
 
print("getInterstitialAdAsync result:",result)
Line 21: Line 21:
 
<br/></source>
 
<br/></source>
 
'''Example 2'''<br/>
 
'''Example 2'''<br/>
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
FBInstant.getInterstitialAdAsync("my_placement_ad", function(result,error)
 
FBInstant.getInterstitialAdAsync("my_placement_ad", function(result,error)
 
print("id:",result.getPlacementID()) -- the Audience Network placement ID of this ad instance.
 
print("id:",result.getPlacementID()) -- the Audience Network placement ID of this ad instance.

Revision as of 15:26, 13 July 2023


Available since: Gideros 2018.3
Class: * Initialisation and Core

Description


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

<syntaxhighlight lang="lua">

FBInstant.getInterstitialAdAsync(placementID,callback)

</source>

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
<syntaxhighlight lang="lua"> FBInstant.getInterstitialAdAsync("my_placement_ad", function(result,error) print("getInterstitialAdAsync result:",result) end)
</source> Example 2
<syntaxhighlight lang="lua"> 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)
</source>