I know there are a slew of questions about this already--but I'd like to add linebreaks to Facebook wall posts that are being posted via the Graph API. I've seen a variety of answers suggesting using <center></center>, but that doesn't work for me--it just prints '<center></center>' in the post.
To be specific, I'm using Ruby and the Koala gem. I am attempting to post to a user's page. If I post as a link and try the center hack in the description of the post, it works as expected--but not in the message, where I actually need it.
UPDATE: I've submitted a patch to the Koala gem that allows a :no_encoding option to be set. If/when this patch is accepted, it will allow for linebreaks if that options is set to true. For now, folks with this issue can grab my fork of the gem: https://github.com/ideaoforder/koala
For those who are curious, the issue was with Faraday. The request method was set to :url_encode which sends the params as url-encoded form data. The params have to be sent as regular data, not form data (like using the -d flag instead of the -f flag in cURL). We accomplish this by sending data as part of the query string instead of encoded params.