diff --git a/lib/messagebird.js b/lib/messagebird.js index 1097bcf..e63c1e1 100644 --- a/lib/messagebird.js +++ b/lib/messagebird.js @@ -350,7 +350,7 @@ module.exports = function (accessKey, timeout) { params.countryCode = countryCode; } - httpRequest('GET', '/lookup/' + phoneNumber, params, callback); + httpRequest('GET', '/lookup/' + encodeURIComponent(phoneNumber), params, callback); }, hlr: { @@ -375,7 +375,7 @@ module.exports = function (accessKey, timeout) { params.countryCode = countryCode; } - httpRequest('GET', '/lookup/' + phoneNumber + '/hlr', params, callback); + httpRequest('GET', '/lookup/' + encodeURIComponent(phoneNumber) + '/hlr', params, callback); }, /** @@ -392,7 +392,7 @@ module.exports = function (accessKey, timeout) { params = null; } - httpRequest('POST', '/lookup/' + phoneNumber + '/hlr', params, callback); + httpRequest('POST', '/lookup/' + encodeURIComponent(phoneNumber) + '/hlr', params, callback); } } }