I’m about to write a RSS-feed fetcher and stuck with some charset problems.
Loading and parsing the feed was quite easy compared to the encoding.
I’m loading the feed with http.get and I’m putting the chunks together on every data event.
Later I’m parsing the whole string with the npm-lib feedparser which works fine with the given string.
Sadly I’m used to functions like utf8_encode() in php and I’m missing them in node.js so I’m stuck with using Iconv which is currently not doing what I want.
Without encoding there are several utf8 ?-icons for wrong charset, with iconv, the string is parsed wrong :/
Currently I’m encoding every string seperatedly:
//var encoding ≈ ISO-8859-1 etc. (Is the right one, checked with docs etc.)
// Shortend version
var iconv = new Iconv(encoding, 'UTF-8');
parser.on('article', function(article){
var object = {
title : iconv.convert(article.title).toString('UTF-8'),
description : iconv.convert(article.summary).toString('UTF-8')
}
Articles.push(object);
});
Should I start encoding with data-buffers or later with the complete string?
Thank you!
PS: Encoding is determined with parsing the head of xml
How about a module which makes encoding in node.js easier?
You are probably hitting the same problem described on https://groups.google.com/group/nodejs/browse_thread/thread/b2603afa31aada9c.
The solution seems to be to set the response encoding to binary before processing the Buffer with Iconv.
The relevant bit is
Updated: this was my initial response
Are you sure that the feed you are receiving has been encoded correctly?
I can see two possible errors:
Content-Typethat statescharset=UTF-8.Content-Typeheader does not state anything, defaulting to ASCII.You should check the content of your feed and the sent headers with some utility like Wireshark or cURL.