I am posting on my FB wall using my java code:
FacebookType publishMessageResponse = facebookClient.publish(
connection,
FacebookType.class,
Parameter.with(
"message",
fbMessageData.getRecipeOwnerName() +
" posted " +
fbMessageData.getRecipeName()
)
);
The message should be: Yoav posted מתכון
, however, it gets posted like this: מתכון Yoav posted
. מתכון
is the recipe name. The recipe name can be in English or Hebrew (UTF-8).
Any ideas on how to keep the order?