请参阅此代码:
$tweet->retweeted_status->entities->media[0]->media_url;
例如,我可以获取推文照片的链接,但我怎么能得到推文的链接?
https:// t.co /lNvfyo04As
等链接
我使用的是PHP。
答案 0 :(得分:0)
你的意思是在推文中链接吗?如果是这样,第一个链接应该是:
// assign x value
val x: Any = "this is string"
// custom function evaluate type
def f[T](v: T) = v match {
case _: Int => println("Int")
case _: String => println("String")
case _ => println("Unknown")
}
// determine val type
f(x)