Problem adding JSON content to WinHttpRequest POST request in classic ASP
问题 I am trying to retrieve data using an NHS API and the instructions are as follows... Endpoint https://api.nhs.uk/service-search/search?api-version=1 Method POST Headers Content-Type: application/json subscription-key: MYKEYHERE Body { "filter": "OrganisationTypeID eq 'PHA'", "orderby": "OrganisationName", "top": 25, "skip": 0, "count": true } Following the answer here How can I post data using cURL in asp classic? I tried this... <% Dim http: Set http = Server.CreateObject("WinHttp