Guest User

Untitled

a guest
May 25th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. Feed Specification
  2. ==================
  3.  
  4. Exposing file
  5. -------------
  6.  
  7. Our feed parser can use **HTTP** or **FTP** to download your feed file. Althought **HTTP** is prefered.
  8.  
  9. XML Structure
  10. -------------
  11.  
  12. Feed is composed of following elements:
  13.  
  14. * **liste** - root element
  15. * **externe_quelle** - name of the service (for example: eBay.com, Amazon.com, Anounz.de)
  16. * **anzeige** - ad element
  17.  
  18. * **anzeige** element contains following:
  19. * **kategorie** - category id of your ad
  20. * **plz** - German postal code of ad
  21. * **typ** - ad type (for sale, offered, wanted, swap, for free)
  22. * **anfrag** - start date
  23. * **ende** - end date
  24. * **stand** - last update date time
  25. * **titel** - title of ad
  26. * **text** - description
  27. * **externe_id** - id of ad in you database, so we can point back to it
  28. * **externer_link** - link to ad in your service
  29.  
  30. Those are **REQUIRED** elements. They are necessary for our feed parser to importing and synchronizing content. There can be also some extra elements if you want. Parser will just ignore them or if they are important for us we'll used them as well. Everything is to determine, and can be customised after all sides agree on it.
  31.  
  32. Below is sample XML file from Betreut.de, our partner, which we're aggregating. It contains 5 sample ads.
Add Comment
Please, Sign In to add comment