Meme_Api
Meme_Api copied to clipboard
403 forbidden for image
All image links gives 403 forbiddden error

in The Preview link the AMPERSANDs (&) are replaced with there uniform charachter (\u0026). what you need to do is:
- get the preview link
- run the replaceAll function on it like this:
previwelink.replaceAll("\u0026", "&")or it can also be like thispreviwelink.replaceAll("&", "&")which consistes of using & instead of \u0026