Difference between revisions of "FBInstant.context.switchAsync"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2018.3<br/> === Description === <br /> Request a switch into a specific context. If the player does not have permission to enter that...")
 
Line 6: Line 6:
 
<br />
 
<br />
 
<source lang="lua">
 
<source lang="lua">
= FBInstant.context.switchAsync(idcallback,)
+
FBInstant.context.switchAsync(id,callback)
 
</source>
 
</source>
'''id:''' (string) ID of the desired context. ''''''<br/>
+
=== Parameters ===
'''callback:''' (function) A function that will be called with two arguments: true when the game has switched into the specified context or nil if the operation failed, and an error code if the function failed. ''''''<br/>
+
'''id''': (string) ID of the desired context. <br/>
 +
'''callback''': (function) A function that will be called with two arguments: true when the game has switched into the specified context or nil if the operation failed, and an error code if the function failed. <br/>
 +
=== Examples ===
 +
'''Example'''<br/>
 +
<source lang="lua"><br />
 +
print(FBInstant.context.getID()) -- eg returns 1122334455
 +
FBInstant.context.switchAsync("1234567890", function(result,error)
 +
    if result then
 +
print(FBInstant.context.getID()) -- eg returns 1234567890
 +
end
 +
end)
 +
<br/></source>

Revision as of 11:44, 23 August 2018

Available since: Gideros 2018.3

Description


Request a switch into a specific context. If the player does not have permission to enter that context, or if the player does not provide permission for the game to enter that context, this will reject. Otherwise, the promise will resolve when the game has switched into the specified context.

 FBInstant.context.switchAsync(id,callback)

Parameters

id: (string) ID of the desired context.
callback: (function) A function that will be called with two arguments: true when the game has switched into the specified context or nil if the operation failed, and an error code if the function failed.

Examples

Example

<br />
print(FBInstant.context.getID()) -- eg returns 1122334455
FBInstant.context.switchAsync("1234567890", function(result,error)
    if result then
		print(FBInstant.context.getID()) -- eg returns 1234567890
	end
end)
<br/>