Meme_Api icon indicating copy to clipboard operation
Meme_Api copied to clipboard

403 forbidden for image

Open nikjust opened this issue 3 years ago • 1 comments

All image links gives 403 forbiddden error image

nikjust avatar Nov 17 '21 09:11 nikjust

in The Preview link the AMPERSANDs (&) are replaced with there uniform charachter (\u0026). what you need to do is:

  1. get the preview link
  2. run the replaceAll function on it like this: previwelink.replaceAll("\u0026", "&") or it can also be like this previwelink.replaceAll("&", "&") which consistes of using & instead of \u0026

nothoudaifa avatar Aug 16 '22 22:08 nothoudaifa