Hi guys, I'm experiencing some very slow replies from api service.
Consider that a few weeks ago everything was ok.
I just tried the listMarketCatalogue call, but it seems very unstable, sometime timeout, sometime fast reply.
this is my code snippet
Do you have hany suggestions?
Last Info: I did the same call from the visualizer, nothing strange happens.
Maybe can affect: I'm calling the API-NG from Italy
Thank you for your help
Consider that a few weeks ago everything was ok.
I just tried the listMarketCatalogue call, but it seems very unstable, sometime timeout, sometime fast reply.
this is my code snippet
Code:
$obj_filter = (object)array(
'filter' => (object)array(
'eventTypeIds' => array_keys(1)
, 'marketTypeCodes' => array(
"CORRECT_SCORE_IT"
, "MATCH_ODDS"
)
, 'marketStartTime' => (object)array(
'from' => date('c', time()-10800)
, 'to' => date('c', time()+10800)
)
)
, 'sort' => "FIRST_TO_START"
, 'maxResults' => 40
, 'marketProjection' => array(
"RUNNER_DESCRIPTION", "EVENT", "EVENT_TYPE"
)
);
$listMarketCatalogue = sportsApingRequest($sessionToken, 'listMarketCatalogue', json_encode($obj_filter));
Last Info: I did the same call from the visualizer, nothing strange happens.
Maybe can affect: I'm calling the API-NG from Italy
Thank you for your help



Comment