Hello,
I am trying to get the full list of flights departing from LPFR airport during a day, but the list is repeating it self
First request
array (
‘start_date’ => 1532901600,
‘end_date’ => 1532987999,
‘origin’ => ‘LPFR’,
‘destination’ => ‘’,
‘howMany’ => 15,
‘offset’ => 0
)
Second request
array (
‘start_date’ => 1532901600,
‘end_date’ => 1532987999,
‘origin’ => ‘LPFR’,
‘destination’ => ‘’,
‘howMany’ => 15,
‘offset’ => 15
)
third request
array (
‘start_date’ => 1532901600,
‘end_date’ => 1532987999,
‘origin’ => ‘LPFR’,
‘destination’ => ‘’,
‘howMany’ => 15,
‘offset’ => 30
)
But the result are always the same first 15 flights.
Could anyone give me a hint where the issue is.
Thank you