如何正确搜索(房地产交易标准又名 RETS)服务器?
How to correctly search (Real Estate Transaction Standard aka RETS) server?
我正在尝试与 RETS(房地产交易标准)服务器交互以查找 matrix_unique_id
字段大于或等于 0 的所有列表。
登录后,我尝试了以下 URI
Search.ashx?SearchType=Property&Class=Listing&Limit=1000&Query=(matrix_unique_id=0+)&StandardNames=0
以上调用returns
<RETS ReplyCode="20201" ReplyText="No Records Found."/>
但后来我提供了一个像这样的有效 Matrix_Unique_Id 值
Search.ashx?SearchType=Property&Class=Listing&Limit=1000&Query=(matrix_unique_id=59075770+)&StandardNames=0
现在 returns 不是我所期待的。返回值如下
这是 RETS 1.7.2 and a PDF
的文档
此外,这里是一个示例,说明如何在 RETS 服务器中搜索不同的服务器,但两者都遵循相同的规范。
https://www.flexmls.com/developers/rets/tutorials/example-rets-session/
此外,我使用 RETS Connector 查询了列表,我能够毫无问题地下载列表,这表明我的帐户正在运行并且具有搜索权限。
问题: 如何正确搜索字段 Matrix_Unique_Id
为 0+ 的所有属性?
要获得完整结果,请尝试以下逻辑,
(ModificationTimestamp=2000-01-01T00:00:00+)
这将 return 2000 年以后的所有列表。如果您需要更旧的版本,请在查询中输入 1990 或更旧的版本。
Note: Your example query (matrix_unique_id=0+) is not working because
of its pattern may not be correct, say 8 digit number only will take
as input.
我正在尝试与 RETS(房地产交易标准)服务器交互以查找 matrix_unique_id
字段大于或等于 0 的所有列表。
登录后,我尝试了以下 URI
Search.ashx?SearchType=Property&Class=Listing&Limit=1000&Query=(matrix_unique_id=0+)&StandardNames=0
以上调用returns
<RETS ReplyCode="20201" ReplyText="No Records Found."/>
但后来我提供了一个像这样的有效 Matrix_Unique_Id 值
Search.ashx?SearchType=Property&Class=Listing&Limit=1000&Query=(matrix_unique_id=59075770+)&StandardNames=0
现在 returns 不是我所期待的。返回值如下
这是 RETS 1.7.2 and a PDF
的文档此外,这里是一个示例,说明如何在 RETS 服务器中搜索不同的服务器,但两者都遵循相同的规范。
https://www.flexmls.com/developers/rets/tutorials/example-rets-session/
此外,我使用 RETS Connector 查询了列表,我能够毫无问题地下载列表,这表明我的帐户正在运行并且具有搜索权限。
问题: 如何正确搜索字段 Matrix_Unique_Id
为 0+ 的所有属性?
要获得完整结果,请尝试以下逻辑,
(ModificationTimestamp=2000-01-01T00:00:00+)
这将 return 2000 年以后的所有列表。如果您需要更旧的版本,请在查询中输入 1990 或更旧的版本。
Note: Your example query (matrix_unique_id=0+) is not working because of its pattern may not be correct, say 8 digit number only will take as input.