Closed TenshiMunasinghe closed 2 years ago
From what I noticed, the clash api encodes the incoming request urls on its own. So all those encodeURIComponent in the getXXXByTag methods are unnecessary. There's basically a double encoding thing going on here.
encodeURIComponent
getXXXByTag
Looks like just this playground encodes urls but not the actual api, my bad.
From what I noticed, the clash api encodes the incoming request urls on its own. So all those
encodeURIComponent
in thegetXXXByTag
methods are unnecessary. There's basically a double encoding thing going on here.