Hi,
I’m trying to implement something like this: if a user shares on facebook, he will get new content. Is there a way to determine that someone has actually shared on facebook? My current code is:
local function facebookShared(result)
var_dump(result);
end
native.showPopup( “social”, {
service = “facebook”,
message = “Found this awesome new game. Amazing music!”,
listener = facebookShared
});
Unfortunately the simulator doesn’t have a social plugin so I can’t see what the return code is. Also I know I may have to use the facebook plugin, but I was hoping for a way to do it like this.