API を使用して eventbrite からイベントを表示しようとしています。パブリックなイベントを作成しましたが、この API 呼び出しを PHP で使用すると、イベントが取得されません。7月にカナダから来た他の人のイベントを見ます。これが私のコードです
$json_url ="https://www.eventbrite.com/json/event_search?app_key=".$authentication_tokens['app_key']."&date=Next+month&country=CA";
$response = file_get_contents($json_url);
$list_events = json_decode($response, true);
var_dump($list_events);
私のイベントが $list_events にない理由を知っている人はいますか?