One thing that’s missing is your callback function for your request call.
function onRequestComplete( event )
--print("onRequestComplete: ", event.phase)
if event.isError then
print("Facebook request error: " .. event.response.error.message)
else
print("Success")
end
end
facebook.request("me/feed", "POST", obj, onRequestComplete)
Now you’re building up your “obj” table just fine. But if there is an error, you won’t know it unless you use the call back and see what kind of error’s you’re getting.
[import]uid: 19626 topic_id: 28437 reply_id: 128951[/import]
[import]uid: 67619 topic_id: 28437 reply_id: 129045[/import]