Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 curl 和 Graph API 作为页面发布到 facebook 个人资料页面。我需要添加一些简单的换行符或一些空格来格式化帖子文本。有什么办法可以做到这一点,因为我尝试了很多东西,但都没有奏效。
在您的内容中使用正常的\n换行符message应该可以在通过 PHP 的 API 制作的帖子中完全正常工作。
\n
message
$facebook->api("me/feed","POST",array("message" => "Hey"." "." world"));