FBInstant.getSupportedAPIs

From GiderosMobile
Revision as of 11:45, 23 August 2018 by Hgy29 (talk | contribs)

Available since: Gideros 2018.3

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

<br />
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/>