Does Yodlee send HTML-encoded data?

134 Views Asked by At

We use Yodlee API to connect to banks for their transactional data. The problem we have is, all transactions that have ampersands (&) in their descriptions come as & . Do we have to explicitly decode & to & after receiving the response from Yodlee? How about other html entities?

(I couldn't find other forums where I could post this question--learned that Yodlee support is on Stack Overflow now?)

1

There are 1 best solutions below

0
On

Yes, you will have to parse them explicitly because the response is in XML format and hence all escape characters like ampersands(&) will be passed appropriately or else the XML will not be in right format.

Here is the list of escape characters for XML -

"   "
'   '
<   &lt;
>   &gt;
&   &amp;