c# - Convert Json that has many unicode characters back to standard json -


hi i'm receiving json payload webhook json returned coming in this

"payload=%7b%22event%22%3a%7b%22info%22%3a%22refresh.interim_progress%22%2c%22loginname%22%3a%22sbmemkostasavr4%22%2c%22data%22%3a%7b%22provideraccount%22%3a%7b%22id%22%3a10376130%2c%22providerid%22%3a12292%2c%22ismanual%22%3afalse%2c%22createddate%22%3a%222017-08-20%22%2c%22aggregationsource%22%3a%22user%22%2c%22refreshinfo%22%3a%7b%22statuscode%22%3a0%2c%22statusmessage%22%3a%22ok%22%2c%22status%22%3a%22in_progress%22%2c%22additionalstatus%22%3a%22account_summary_retrieved%22%7d%7d%7d%7d%7d"

is there simple way convert normal standard json curly braces. don't want crazy string.replace method on it.

thanks

this worked me.

httputility.urldecode(json); 

Comments

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -