通过Twitter Rest API 1.1,可在15分钟内完成的查询数量限制为180个。
我想了解剩余的查询次数。 Documentation作为回应JSON,“搜索/推文”部分有一个斜杠。所以,我无法访问“剩余”部分。
如何访问
rate_limit_context - >资源 - >搜索 - >搜索/推文 - >其余
用php
答案 0 :(得分:1)
一种可能的解决方案是;
$result= get_object_vars($resources);
$result = get_object_vars($result['search']);
$result = get_object_vars($result['/search/tweets']);
$result = $result['remaining'];
答案 1 :(得分:0)
将其视为数组键
$json['search']['/search/tweets']['remaining']
答案 2 :(得分:0)
如果您使用的是无法将jason_decode设置为true的类(在调用中),那么这些答案都不起作用,那么您可以使用{}
来转义斜杠所以rate_limit_context - >资源 - >搜索 - > {'search / tweets'} - >其余