Difference between revisions of "FBInstant.getSupportedAPIs"

From GiderosMobile
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 +
<languages />
 
'''<translate>Available since</translate>:''' Gideros 2018.3<br/>
 
'''<translate>Available since</translate>:''' Gideros 2018.3<br/>
 
'''<translate>Class</translate>:''' [[Special:MyLanguage/* Initialisation and Core|* Initialisation and Core]]<br/>
 
'''<translate>Class</translate>:''' [[Special:MyLanguage/* Initialisation and Core|* Initialisation and Core]]<br/>

Revision as of 10:59, 3 September 2018


Available since: Gideros 2018.3
Class: * Initialisation and Core

Description


Provides a table of API functions that are supported by the client.

(table) = FBInstant.getSupportedAPIs()

Return values

Returns (table) Table of API functions that the client explicitly supports.

Examples

Example

FBInstant.getSupportedAPIs( function(result,error)
    if result then
		print("Number of functions:",#result)
		for loop=1,#result do
			print(result[loop])
		end
	end
end)
<br/>