Difference between revisions of "FBInstant.context.getPlayersAsync"

From GiderosMobile
Line 2: Line 2:
 
'''Available since:''' Gideros 2018.3<br/>
 
'''Available since:''' Gideros 2018.3<br/>
 
=== Description ===
 
=== Description ===
<br />
+
<translate><br />
 
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.<br />
 
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.<br />
<br />
+
<br /></translate>
 
<source lang="lua">
 
<source lang="lua">
 
  FBInstant.context.getPlayersAsync(callback)
 
  FBInstant.context.getPlayersAsync(callback)
 
</source>
 
</source>
 
=== Parameters ===
 
=== 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. <br/>
+
'''callback''': (function) <translate>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.</translate> <br/>
 
=== Examples ===
 
=== Examples ===
 
'''Example 1'''<br/>
 
'''Example 1'''<br/>
<source lang="lua"><br />
+
<source lang="lua">
 
FBInstant.context.getPlayersAsync(function(result,error)
 
FBInstant.context.getPlayersAsync(function(result,error)
 
     if result then
 
     if result then
Line 26: Line 26:
 
<br/></source>
 
<br/></source>
 
'''Example 2'''<br/>
 
'''Example 2'''<br/>
<source lang="lua"><br />
+
<source lang="lua">
 
FBInstant.context.getPlayersAsync(function(result,error)
 
FBInstant.context.getPlayersAsync(function(result,error)
 
     if result then
 
     if result then

Revision as of 14:38, 23 August 2018

Available since: Gideros 2018.3

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.

 FBInstant.context.getPlayersAsync(callback)

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

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

Example 2

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