I'm doing an HTTP request to a server (not mine) but I'm getting some weird json data, as shown in the picture.
I don't know if this is some kind of encryption or something.
Asked
Active
Viewed 50 times
0

Karim Sinouh
- 1,312
- 2
- 6
- 20
-
Looks like base64 encoded data. (The `\/` sequence should be `/`) – Alex K. Feb 25 '21 at 22:55
-
Is there anything I can do to decrypt it? – Karim Sinouh Feb 25 '21 at 23:09
-
base64 decode it https://stackoverflow.com/questions/246801/how-can-you-encode-a-string-to-base64-in-javascript/247261#247261 – Alex K. Feb 26 '21 at 11:51