Hi
I'm not an expert but I have one solution worth trying
Let's suppose your article has name & description fields you can do something like
your_api_variable.put_wall_post(
article.name, {}, group_or_people_id)
you can also create some attachment (the empty hash param on the previous line) to your post by doing something like:
attachment = {
"name" =>
article.name,
"link" => link_to_article(or website or whatever you like),
"caption" => some_caption_text,
"description" => article.description,
"picture" => article.pic
}
you end up with a call this call:
your_api_variable.put_wall_post(article.name, attachment, group_or_people_id)hope this helps