On Fri, Jun 15, 2012 at 7:46 AM, Suryajith Chillara suryajith1987@gmail.com wrote:
'token' => "a25a10589a377fc4d75e5e0dcfb209c2%2B%5C",
You're probably double-encoding the token here, I'll bet that whatever library you're using will transmit this as "a25a....c2%252B%252C". So try using a literal +\ in the token parameter and let the library handle the escaping for you.
Roan