rets-client
Advanced tools
Changelog
4.0.0
Version 4.0! This represents a substantial rewrite of the object-retrieval code, making it more robust and flexible,
adding support for streaming object results, and allowing for additional query options (like Location
and
ObjectData
). See the simple photo query example at the end of the Example RETS Session, and
the photo streaming example.
Also new in version 4.0, just about every API call now gives access to header info from the RETS response. For some
queries, in particular object queries, headers are often used as a vehicle for important metadata about the response,
so this is an important feature. The exact mechanism varies depending on whether it a call that resolves to a stream
(which now emits a headerInfo
event) or a call that resolves to an object (which now has a headerInfo
field). Also,
the RetsServerError and RetsReplyError objects now both contain a headerInfo
field.
Changelog
3.3.0
Version 3.3 adds support for debugging via the debug and request-debug modules. See the debugging section.
Changelog
3.2.2
Version 3.2.2 adds support for per-object errors when calling client.objects.getPhotos()
. The
Example RETS Session illustrates proper error checking.