FBInstant.context.getPlayersAsync

From GiderosMobile
Revision as of 15:26, 13 July 2023 by Hgy29 (talk | contribs) (Text replacement - "<source" to "<syntaxhighlight")


Available since: Gideros 2018.3
Class: Context

Description


Gets an table of #contextplayer tables containing information about active players (people who played the game in the last 90 days) that are associated with the current context. This may include the current player.

<syntaxhighlight lang="lua">

FBInstant.context.getPlayersAsync(callback)

</source>

Parameters

callback: (function) A function that will be called with two arguments: a set of key-value pairs or nil is the operation failed, and an error code if the function failed.

Examples

Example 1
<syntaxhighlight lang="lua"> FBInstant.context.getPlayersAsync(function(result,error)

   if result then

print("Active players:",#result) for loop=1,#result do local player=result[loop] for key,value in pairs(player) do print(key,value) end end end end)
</source> Example 2
<syntaxhighlight lang="lua"> FBInstant.context.getPlayersAsync(function(result,error)

   if result then

print("Active players:",#result) for loop=1,#result do local player=result[loop] print("id,name,photo",player.getID(),player.getName(),player.getPhoto()) end end end)
</source>