Hi,
I'm trying to get RSS data from a 3rd party website.
The header of the feed is:
The code was running fine until an article was added with the 'é' character in it.
My log shows the message "Input is not proper UTF-8, indicate encoding".
Is there a workaround for it, as I cannot change the header of the RSS feed?
Thanks in advance
Edit: Found it, I've should have used 'NSISOLatin1StringEncoding' for the encoding option. It works now.
I'm trying to get RSS data from a 3rd party website.
The header of the feed is:
Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
The code was running fine until an article was added with the 'é' character in it.
My log shows the message "Input is not proper UTF-8, indicate encoding".
Is there a workaround for it, as I cannot change the header of the RSS feed?
Thanks in advance
Edit: Found it, I've should have used 'NSISOLatin1StringEncoding' for the encoding option. It works now.