Difference between revisions of "FBInstant.context.getPlayersAsync"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2018.3<br/> === Description === <br /> Gets an table of #contextplayer tables containing information about active players (people who...")
 
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
'''Available since:''' Gideros 2018.3<br/>
+
<languages />
=== Description ===
+
'''<translate>Available since</translate>:''' Gideros 2018.3<br/>
<br />
+
'''<translate>Class</translate>:''' [[Special:MyLanguage/Context|Context]]<br/>
 +
=== <translate>Description</translate> ===
 +
<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">
+
<syntaxhighlight lang="lua">
= FBInstant.context.getPlayersAsync(callback,)
+
FBInstant.context.getPlayersAsync(callback)
</source>
+
</syntaxhighlight>
'''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/>
+
=== <translate>Parameters</translate> ===
 +
'''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/>
 +
=== <translate>Examples</translate> ===
 +
'''Example 1'''<br/>
 +
<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)
 +
<br/></syntaxhighlight>
 +
'''Example 2'''<br/>
 +
<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)
 +
<br/></syntaxhighlight>
 +
 
 +
{{FBInstant.context}}

Latest revision as of 15:27, 13 July 2023


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.

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