0

I have a service which returns ' 6"_x_5" ' as part of its json response, but active resource interprets this as ' 6���_x_4��� '. When i curl against the same url the response looks fine, any idea how to fix this?

MLN
  • 13,728
  • 1
  • 17
  • 15

1 Answers1

0

this is an encoding issue. what encoding is the app set to use? you may need to encode the value or escape them.

e.g.

'6\"_x_5\"'
TomDunning
  • 4,829
  • 1
  • 26
  • 33