我如何从 Twitter api 的回复中检索值 (Message) 和 (Code)?
How do i retrieve values (Message) and (Code) from the reply of twitter api?
我正在使用 codebird post 使用 php 进行更新,直到我收到此消息作为失败的回复
object(stdClass)[2]
public 'errors' =>
array (size=1)
0 =>
object(stdClass)[3]
public 'code' => int 187
public 'message' => string 'Status is a duplicate.' (length=22)
public 'httpstatus' => int 403
public 'rate' => null
我可以使用以下代码成功检索汇率
$httpstatus = $reply->httpstatus;
但我无法检索其余部分,尤其是代码和消息,当我尝试上面的代码时,它 returns 没有任何内容或空字符串
尝试
foreach($reply->errors AS $error){
echo 'error code:'. $error->code;
echo 'error message:'. $error->message;
}
如你所见,errors 属性是一个数组,所以你必须itarate
我正在使用 codebird post 使用 php 进行更新,直到我收到此消息作为失败的回复
object(stdClass)[2]
public 'errors' =>
array (size=1)
0 =>
object(stdClass)[3]
public 'code' => int 187
public 'message' => string 'Status is a duplicate.' (length=22)
public 'httpstatus' => int 403
public 'rate' => null
我可以使用以下代码成功检索汇率
$httpstatus = $reply->httpstatus;
但我无法检索其余部分,尤其是代码和消息,当我尝试上面的代码时,它 returns 没有任何内容或空字符串
尝试
foreach($reply->errors AS $error){
echo 'error code:'. $error->code;
echo 'error message:'. $error->message;
}
如你所见,errors 属性是一个数组,所以你必须itarate