如何在“标题”中插入换行符通过 Facebook Graph API 墙贴属性?
我见过应用程序将带有“标题”的链接发布到用户的墙上,并且其中有换行符。 Foursquare 就是这些应用程序之一。
我不知道如何识别换行符,并且我已经尝试了所有方法,包括仅传递“\r\n”、“\n”等
(注意:我正在谈论发布到用户的墙 - http://developers.facebook.com/docs/reference/api/post/)
I've seen apps post links with "captions" to user's walls and they have a newline in them. Foursquare is one of these apps.
I cannot figure out how to get a newline recognized and I've tried everything, including just passing in "\r\n", "\n", etc.
(note: I'm talking about publishing to a user's wall -- http://developers.facebook.com/docs/reference/api/post/)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
事实证明,轻松做到这一点的方法是通过 HTTP POST 提供
caption
和description
参数。标题将是第一行,描述将作为第二行。Turns out the way to do this easily is to provide both
caption
anddescription
parameters with the HTTP POST. Caption will be the first line, and Description will act as the second.使用以下内容:
作为标题字符串的一部分。它会在发布链接时为您创建一个换行符。
Use the following:
as part of your caption string. It will create a line-break for you when posting the link.
尝试在图形 api 中使用属性参数:
这将在 2 行中发布帖子...
(注意:json在处理前需要转换为字符串)
Try using properties arguments in graph api:
This will publish post in 2 lines...
(Note: json should be converted to string before processing)
尝试仅使用描述而不是标题。
Try using only description instead of caption.