Извините, что выкопал старую запись, но у меня недавно было подобное ограничение: все, что нужно было поместить в одну рабочую книгу, и я хочу опубликовать свое решение на случай, если у кого-то возникнет похожая проблема.Закончил писать свою собственную полностью-VBA библиотеку (в значительной степени основанную на одном из моих любимых, RestSharp).
Предупреждение, бесстыдный плагин: https://github.com/timhall/Excel-REST
Некоторые интересные функции включают аутентификацию (Http BasicOAuth1 и OAuth2 Client Credentials), поддержка Async и синтаксический анализ JSON (благодаря vba-json)
Он отлично работает в Excel 2010 (и, скорее всего, в 2007), но не работает в Excel для Mac из-заотсутствуют библиотеки XMLHTTP.Он работает с Salesforce, Trello, Basecamp, Google Maps, и он должен работать практически с любым веб-сервисом REST.
Пример:
Function GetDirections(Origin As String, Destination As String) As String
' Create a RestClient for executing requests
' and set a base url that all requests will be appended to
Dim MapsClient As New RestClient
MapsClient.BaseUrl = "https://maps.googleapis.com/maps/api/"
' Create a RestRequest for getting directions
Dim DirectionsRequest As New RestRequest
DirectionsRequest.Resource = "directions/{format}"
DirectionsRequest.Method = httpGET
' Set the request format -> Sets {format} segment, content-types, and parses the response
DirectionsRequest.Format = json
' (Alternatively, replace {format} segment directly)
DirectionsRequest.AddUrlSegment "format", "json"
' Add parameters to the request (as querystring for GET calls and body otherwise)
DirectionsRequest.AddParameter "origin", Origin
DirectionsRequest.AddParameter "destination", Destination
' Force parameter as querystring for all requests
DirectionsRequest.AddQuerystringParam "sensor", "false"
' => GET https://maps.../api/directions/json?origin=...&destination=...&sensor=false
' Execute the request and work with the response
Dim Response As RestResponse
Set Response = MapsClient.Execute(DirectionsRequest)
If Response.StatusCode = 200 Then
' Work directly with parsed json data
Dim Route As Object
Set Route = Response.Data("routes")(1)("legs")(1)
GetDirections = "It will take " & Route("duration")("text") & _
" to travel " & Route("distance")("text") & _
" from " & Route("start_address") & _
" to " & Route("end_address")
Else
GetDirections = "Error: " & Response.Content
End If
End Function