Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am developing a small application for facebook. In my application I post content to a fan page's wall.

When the user enters a new line character the post completely ignores it. How can I solve this?

share|improve this question
possible duplicate of Facebook Graph API Linebreak – BK. Sep 24 '11 at 14:36
this solution doesn't work – vondip Sep 24 '11 at 19:11
1  
it seems every time someone finds a way, it gets closed by facebook. – BK. Sep 24 '11 at 19:30
yes, very annoying. There are several of facebook's support team here on stackoverflow. Is there any way to contact them directly? – vondip Sep 24 '11 at 20:02
1  
this is the best place to contact them directly: facebook.com/groups/fbdevelopers – BK. Sep 24 '11 at 20:07
show 1 more comment

3 Answers

up vote 1 down vote accepted

IF you send the following text

hello%0Aline+2

The posted message will look like

hello
line 2

Checked it right now:)

share|improve this answer

this work fine for me:

// first: replace normal \n (or "\\n") for "\r\n"
$mensaje=str_replace("\\n","\r\n",$reg['mensaje']);

// second: this only is for clear special characters
$mensaje=utf8_encode($mensaje);
share|improve this answer

Use html_entities, otherwise the POST request is not transferred properly.

share|improve this answer
well, this \r\n doesn't work. Any other ideas? – vondip Oct 23 '11 at 9:32
Maybe preg_replace new lines? – Roie Cohen Oct 24 '11 at 14:17
replace with what ? – vondip Oct 25 '11 at 5:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.