Difference between revisions of "FBInstant.getInterstitialAdAsync"
From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>") |
|||
(6 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | '''Available since:''' Gideros 2018.3<br/> | + | <languages /> |
− | === Description === | + | '''<translate>Available since</translate>:''' Gideros 2018.3<br/> |
− | <br /> | + | '''<translate>Class</translate>:''' [[Special:MyLanguage/* Initialisation and Core|* Initialisation and Core]]<br/> |
+ | === <translate>Description</translate> === | ||
+ | <translate><br /> | ||
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 /> | + | <br /></translate> |
− | < | + | <syntaxhighlight lang="lua"> |
FBInstant.getInterstitialAdAsync(placementID,callback) | FBInstant.getInterstitialAdAsync(placementID,callback) | ||
− | </ | + | </syntaxhighlight> |
− | === Parameters === | + | === <translate>Parameters</translate> === |
− | '''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 === | + | === <translate>Examples</translate> === |
'''Example'''<br/> | '''Example'''<br/> | ||
− | < | + | <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) | ||
end) | end) | ||
− | <br/></ | + | <br/></syntaxhighlight> |
'''Example 2'''<br/> | '''Example 2'''<br/> | ||
− | < | + | <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. | ||
Line 26: | Line 28: | ||
end) | end) | ||
end) | end) | ||
− | <br/></ | + | <br/></syntaxhighlight> |
+ | |||
+ | {{FBInstant}} |
Latest revision as of 14:27, 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.
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
FBInstant.getInterstitialAdAsync("my_placement_ad", function(result,error)
print("getInterstitialAdAsync result:",result)
end)
<br/>
Example 2
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/>
- FBInstant.canCreateShortcutAsync
- FBInstant.checkCanPlayerMatchAsync
- FBInstant.createShortcutAsync
- FBInstant.getEntryPointAsync
- FBInstant.getEntryPointData
- FBInstant.getInterstitialAdAsync
- FBInstant.getLeaderboardAsync
- FBInstant.getLocale
- FBInstant.getPlatform
- FBInstant.getRewardedVideoAsync
- FBInstant.getSDKVersion
- FBInstant.getSupportedAPIs
- FBInstant.logEvent
- FBInstant.matchPlayerAsync
- FBInstant.onPause
- FBInstant.quit
- FBInstant.setLoadingProgress
- FBInstant.setSessionData
- FBInstant.shareAsync
- FBInstant.startGameAsync
- FBInstant.switchGameAsync
- FBInstant.updateAsync