You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Until now we were working with DDF feed fetching the data in the default COMPACT-Decoded Format and getting the data properly. However, based on the docs, some data is only available in STANDARD-XML.
When I request the data in STANDARD-XML I get no records at all.
I am using the latest PHRETS library and my test code looks like this.
public function test()
{
$this->connect();
return $this->rets->Search(
'Property',
'Property',
'ID=26352397',
['Limit' => 1, 'Format' => 'STANDARD-XML']
);
}
Until now we were working with DDF feed fetching the data in the default COMPACT-Decoded Format and getting the data properly. However, based on the docs, some data is only available in STANDARD-XML.
When I request the data in STANDARD-XML I get no records at all.
I am using the latest PHRETS library and my test code looks like this.
And the return from this function:
This just gives an empty array.
What am I missing? Is there any other way to get these fields?
The text was updated successfully, but these errors were encountered: