Hello: I'm trying to use PROC HTTP to access an API URL that contains double quotes, as shown: https://example.com/api.pro?method=login&data={ "username":"testuser","password": "testpassword" } This syntax works correctly when pasted directly into a browser. When run in SAS code as below, the call fails. We're running SAS 9.4 (ts1m3). Example: proc http url="https://example.com/api.pro?method=login&data={ "username":"testuser","password": "testpassword" }" method = "POST" out=resp headerout=hdrs; run; The response data from the call is: {"success":false,"error":"Web services not available at this address","errno":10000} I'm assuming it has to do with the quotes in the URL... Thanks in advance
... View more