Twitter 搜索 API 结果 results['text'] 值没有 a href 标签
Twitter 搜索 API 返回的结果如下所示
(
[source] => <a href="http://twitter.com/">web</a>
[text] => #prabhu linked into #apptivo via http://t.co/eWTJLj6Y
[to_user_id] =>
[to_user_id_str] =>
)
: [文字] => #prabhu 通过 http://t.co/eWTJLj6Y 链接到 #apptivo
我们没有“http://”的标签t.co/eWTJLj6Y” url 和 #prabhu(哈希标签)
我们如何获取“http://t.co/eWTJLj6Y” url 和 #prabhu 的 url?
Twitter search API results returned like the below values
(
[source] => <a href="http://twitter.com/">web</a>
[text] => #prabhu linked into #apptivo via http://t.co/eWTJLj6Y
[to_user_id] =>
[to_user_id_str] =>
)
Here,
[text] => #prabhu linked into #apptivo via http://t.co/eWTJLj6Y
we don't have the tags for the "http://t.co/eWTJLj6Y" url and #prabhu (hash tag)
how can we get the urls for "http://t.co/eWTJLj6Y" url and #prabhu?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 URL 正则表达式解析它们以获取 URL,并添加链接和主题标签(
/(#\w+)\b/
应该这样做)。You can parse them for URLs with a URL regex and add link and the same with hashtags (
/(#\w+)\b/
should do it).