我正试图调用facebook api一次又一次地刮我的页面。 但是,一旦我尝试过它,一旦其极限很快达到。我将api调用2到3次,其作用范围达到极限。我调用API的代码是
$router->get('/', ["as" => "home", function (\Illuminate\Http\Request $request,\Facebook\Facebook $fb) use ($colors) {
if ($request->getHttpHost() === 'localhost') {
$limit = count($colors) - 1;
try {
$response = $fb->post('/?scrape=true&id=http://color1.tk/');
$response->getGraphNode();
}catch (\Facebook\Exceptions\FacebookResponseException $exception){
Log::addDebug($exception->getMessage());
}
return view('index')->with("color", $colors[rand(0,$limit)]);
}else{
return "This action is not allowed";
}
}]);
在facebook应用统计页面上,刷新页面2或3次后,我看到了这一点 Facebook api limit reaching