Help! - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32) +--- Forum: Scrapers (https://forum.kodi.tv/forumdisplay.php?fid=60) +--- Thread: Help! (/showthread.php?tid=46032) |
Help! - hamp - 2009-02-25 Code: <GetDetails> Not work! Why? Empty.
- spiff - 2009-02-25 apart from the obvious errors; (missing tags, missing expressions); you are writing xml so you have to escape special chars. in addition you are outputting xml so you have to escape chars yet another time; in particular Code: <RegExp input="$$1" output="<url function="GMA">http://api.themoviedb.org/2.0/Movie.search?title=\1&api_key=57983e31fb435df4df77afb854740ea9</url>" dest="5+"> Code: <RegExp input="$$1" output="<url function="GMA">http://api.themoviedb.org/2.0/Movie.search?title=\1&amp;api_key=57983e31fb435df4df77afb854740ea9</url>" dest="5+"> the & -> &amp; hint; open the xml in e.g. firefox. it will tell you exactly where the error is at - hamp - 2009-02-25 Thank you. It really works. |