Facebook 图形 API
我正在使用 Facebook 图形 API。 如果我发送一条评论:“Hey Man + you are kul & V”,
其打印为 Hey Man you are kul。
- 和&没有定价以及 V 之后的内容。
请提供您的支持来解决此问题。
I am using facebook graph API.
If i send a comment : "Hey Man + you are kul & V"
Its printing as Hey Man you are kul.
- and & are not priting as well as contents after V.
Kindly provide ur support to solve this issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要对消息进行编码,因为它认为 & 之后的数据是:是一个附加参数。我认为 + get 也被翻译为空格。您没有指定您的语言,但在 PHP 中您可以将消息包装在 urlencode() 中。正如前面的评论提到的,来源会让这变得更容易......
You would need to encode your message since it thinks the data after the & is an additional parameter. I think the + get's translated as a space too. You didn't specify your language, but in PHP you could wrap the message in urlencode(). As the previous comment mentioned, source would make this easier...