Fatal error: Access to undeclared static property: DTS\eBaySDK\Constants\GlobalIds::$stripped in /home/jimi13/public_html/dealpopup.com/ebayapi/finding/mine.php on line 334
$stripped = str_replace(' ', '', $country);
$stripped = preg_replace('/\s+/', '', $stripped);
echo $stripped;
need to take put stripped into this
$service = new Services\FindingService([
'credentials' => $config['production']['credentials'],
'globalId' => Constants\GlobalIds::US
]);
need to put this in, but throws error
$service = new Services\FindingService([
'credentials' => $config['production']['credentials'],
'globalId' => Constants\GlobalIds::$stripped
]);