Difference between revisions of "FBInstant.player.getDataAsync"
From GiderosMobile
Line 8: | Line 8: | ||
FBInstant.player.getDataAsync(keys,callback) | FBInstant.player.getDataAsync(keys,callback) | ||
</source> | </source> | ||
− | '''keys''': (table) An array of unique keys to retrieve data for. | + | === 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/> | + | '''keys''': (table) An array of unique keys to retrieve data for. <br/> |
+ | '''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/> | ||
+ | === Examples === | ||
+ | '''Example'''<br/> | ||
+ | <source lang="lua"><br /> | ||
+ | FBInstant.player.getDataAsync({"achievements","currentLife"}, function(result,error) | ||
+ | if result then | ||
+ | for key,value in pairs(result) do | ||
+ | print(key,value) | ||
+ | end | ||
+ | end | ||
+ | end) | ||
+ | <br/></source> |
Revision as of 10:45, 23 August 2018
Available since: Gideros 2018.3
Description
Retrieve data from the designated cloud storage of the current player.
FBInstant.player.getDataAsync(keys,callback)
Parameters
keys: (table) An array of unique keys to retrieve data for.
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
<br />
FBInstant.player.getDataAsync({"achievements","currentLife"}, function(result,error)
if result then
for key,value in pairs(result) do
print(key,value)
end
end
end)
<br/>