I am trying to make an API call with a superagent, but it encodes my api key, which is rejected.
get(url).query({ key: 'Fmjtd%7Cluu').end(function(err, res) {
The key is sent as
Fmjtd%257Cluu
Any ideas how to prevent this use of a super agent? If I make it part of the url part, thatβs fine, but I would like to pass it as request data, if possible.
source share