Hello everybody!
I want to post a link to facebook user’s wall by feed dialog using facebook.showDialog function like this:
[lua]local recipient
local link
local name
local caption
local description
local picture
local dialogPost ={
to = recipient,
link = link,
name = name,
caption = caption,
description = description,
picture = picture,
}
facebook.showDialog(“feed”,dialogPost)[/lua]
It worked with a single facebook id: [lua]local recipient = “103447234” [/lua]
But I want to send this post to multiple facebook user wall at once. Is the feed dialog can use with multiple recipients?
How to declare the recipient in the “to” parameter?
I have tried a table of facebook ids, like the options in native.showPopup(“sms”,options) function:
[lua] local recipient = { “1234567890”, “9876543210” }[/lua]
but it not work.
[import]uid: 9190 topic_id: 32486 reply_id: 332486[/import]