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'm playing with Facebook Graph API and I am facing one problem - I can't find any way how to post to wall with some HTML code or new lines. How it could be done? Here's my code

<?php
include_once 'lib/facebook.php';
define("FACEBOOK_APP_ID", '10126');
define("FACEBOOK_API_KEY", '064ca1988b');
define("FACEBOOK_SECRET_KEY", '9afdf92114');
define("FACEBOOK_CANVAS_URL", 'http://apps.facebook.com/my_canv_app/');
if (isset($_GET['code'])){
    header("Location: " . FACEBOOK_CANVAS_URL);
    exit;
}

$facebook = new Facebook(array('appId' => FACEBOOK_APP_ID, 'secret' => FACEBOOK_SECRET_KEY));
$user = $facebook->getUser();
$loginUrl   = $facebook->getLoginUrl(
        array(
                'scope'  => 'email,publish_stream,user_birthday,user_location,user_about_me,user_hometown'
        )
);

if (!$user) {
    echo "<script type='text/javascript'>top.location.href = '$loginUrl';</script>";
    exit;
}


try {
    $uid = $facebook->getUser();
    $me = $facebook->api('/me');
    $statusUpdate = $facebook->api('/me/feed', 'post', array('message'=> 'Trying to make new line here \n <br /> Neither works', 'cb' => ''));
} catch (FacebookApiException $e) {
    echo "<script type='text/javascript'>top.location.href = '$loginUrl';</script>";
}
?>

how could I do it?

share|improve this question
you might want to remove the api/secret key from the code example (not sure if someone can do anything with this). – PENDO Jun 17 '11 at 12:14
I edited it before, real code is more than 32 chars long – genesis Jun 17 '11 at 12:16
Ah ok, didn't know they had to be 32 chars long in every case :) – PENDO Jun 17 '11 at 12:19

4 Answers

up vote 3 down vote accepted

You can't include any markup or new lines in wall posts. You used to be able to provide some FBML markup to get some basic formatting, but that got abused. If you could include html and new lines, Facebook profiles would start looking like MySpace profiles.

Facebook pretty much sanitizes all wall/profile content, for security reasons.

share|improve this answer
hmm, that's bad. But some applications, like this - lulzimg.com/i23/18cd3a.png does include link. how ? – genesis Jun 18 '11 at 16:04
1  
There are a number of ways to get links into the feed. But you have to use Facebooks data structures. My guess is they are using the "properties" attribute of the post. That will give you a list of links, each one on a new line. developers.facebook.com/docs/reference/dialogs/feed – Brent Baisley Jun 19 '11 at 19:34

put this

< center >< /center >

to where you want to break the line

ex:

line1< center >< / center >line2< center >< / center >line3

NOTE: no spaces before and after < >

share|improve this answer

This works.

try {
$uid = $facebook->getUser();
$me = $facebook->api('/me');
$statusUpdate = $facebook->api('/me/feed', 'post', array('message'=> 'Line 1
                                                             Line 2
                                                             Line 3
                                                             Line 4',
                                                         'cb' => ''));
share|improve this answer

Despite all the stuff that’s been said in answers to previous questions regarding newlines in wall posts – I never had any problem with just using the escape character \n when making posts using PHP.

array('message'=> 'Trying to make new line here \n <br /> Neither works', …

Of course, if you are filling you message parameter in PHP using single quotes, \n means only the two characters \ and n – that these escape sequences are only interpreted when using double quotes, is absolutely basic PHP syntax knowledge …

D’oh!

share|improve this answer

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.