GetJSON returns 401

I’m unable to connect to smartystreets. The console log shows a get error 401. If I right click on the url and open in a new tab it works fine. Not sure what I’m doing wrong. Newbie.

Function btnValAddress_onclick()
  params = "auth-id=" & SSAuthID
  params += "&auth-token=" & SSAuthToken
  params += "&street=" & encodeURI(inpAddress.value)
  params += "&lastline=" & encodeURI(inpCSZ.value)
  Dim req = GetJSON(SSUrl, params, addressData)
  console.log(req.toString())
End Function

Sub addressData(data)
  MsgBox "LAT is " & data[0].metadata.latitude
End Sub

Tip : If you’re pasting code, html or config files, surround the code with triple back ticks (```), before the first line and after the last one. It will be formatted properly.

Google is always your friend for handling third party services. 401 errors are not an issue with AppStudio but with authentication to the third party service Why am I getting a 401 HTTP status code? - Smarty

The GetJSON function is a wrapper for the jQuery $.getJSON() function. It works identically.