For the loyal VBA fans a quick snippet to grab search results from Bing in Access or Excel. There are few articles on the web about that, and that is a shame. So lets add some content on it to the web : first in MsAccess VBA and then in Excel, with a sample workbook added.
Working with the BING API requires an Application Id you can get at the Bing website.
Accessing the Bing Api in MsAccess VBA
In the the VBA Ide, through the menu Tools References I add a reference to the XML object library that contains the XMLHTTPRequest object, enabling me to make HTTP requests from VBA in the MsAccess database.
The simple part is the http request string :
-
-
Dim MyKeyword As String
-
MyKeyword = "seo"
-
-
Dim requestString As String
-
requestString = "http://api.bing.net/xml.aspx?"
-
-
Dim AppId As String
-
AppId = "(get one at the bing website)"
-
-
' Common request fields (required)
-
requestString = requestString & _
-
"AppId=" & AppId & "&Query=" & MyKeyword & "&Sources=Web"
-
-
' Common request fields (optional)
-
requestString = requestString & _
-
"&Version=2.0" _
-
& "&Market=en-us" _
-
& "&Adult=Moderate" _
-
& "&Options="
-
-
' Web-specific request fields (optional)
-
requestString = requestString & _
-
"&Web.Count=10" _
-
& "&Web.Offset=0" _
-
& "&Web.Options=DisableHostCollapsing+DisableQueryAlterations"
Then comes the working part, sending the actual request and receiving the XML response (objSvrHTTP.responseText) containing the search data. I use a DomDocument object and XPath to get at the XML data.
First sending the request
-
objSvrHTTP.Open "GET", requestString, False
-
objSvrHTTP.send requestString
then creating a domdocument and receiving the response in it
-
'Create the DomDocument Object
-
Dim oDoc As MSXML2.DOMDocument
-
Set oDoc = CreateObject("MSXML2.DOMDocument")
-
oDoc.async = False
-
oDoc.validateOnParse = False
-
-
'Load the response in the DomDocument Object
-
Dim fSuccess As Boolean
-
fSuccess = oDoc.loadXML(objSvrHTTP.responseText)
-
If Not fSuccess Then
-
MsgBox "failed"
-
Exit Sub
-
End If
The response uses two namespaces and the data we actually want is in the “web” namespace, so before we start selecting nodes in the xml-tree we first indicate what namespace we want to access :
-
oDoc.SetProperty "SelectionNamespaces", "xmlns:web='http://schemas.microsoft.com/LiveSearch/2008/04/XML/web'"
The total search result pages is a top level node in the namespace :
-
Set xmlnode = oDoc.selectSingleNode("//web:Total")
-
Debug.Print xmlnode.Text
…but the good stuff is in the “WebResult” nodes in the xml tree, I can use an XPath reference //web:Webresult to access that node-collection and with a simple for-next iterate through the collection, selecting the single nodes containing the actual data.
-
Set oChildren = oDoc.selectNodes("//web:WebResult")
-
For Each oResult In oChildren
-
Debug.Print oResult.selectSingleNode("./web:Title").Text
-
Debug.Print oResult.selectSingleNode("./web:Description").Text
-
Debug.Print oResult.selectSingleNode("./web:Url").Text
-
Debug.Print oResult.selectSingleNode("./web:DisplayUrl").Text
-
Debug.Print vbCrLf
-
Next
I output to the Immediate window aka Debug (under View, Immediate Window or Ctrl+G)
What can we do with it ? Let’s make a table for date, keyword, url, title, description, position
and add some code to store the results we retrieve
-
Dim table1 As DAO.Recordset
-
Set table1 = CurrentDb.OpenRecordset("Table1", dbOpenTable)
-
'counter for position
-
i = 0
-
-
Set oChildren = oDoc.selectNodes("//web:WebResult")
-
For Each oStruct In oChildren
-
-
i = i + 1
-
With table1
-
.AddNew
-
'data from bing
-
!TITLE = oStruct.selectSingleNode("./web:Title").Text
-
!Description = oStruct.selectSingleNode("./web:Description").Text
-
!url = oStruct.selectSingleNode("./web:Url").Text
-
'and some additional data
-
!MYDATE = Now()
-
!POSITION = i
-
!KEYWORD = MyKeyword
-
'store the record
-
.Update
-
End With
-
-
Next
-
-
table1.Close
There now that scratches the seo itch :
MsAccess stuff is a bit hard to put on the web as sample, so I’ll make a quick one in Excel and put it up for download.
Accessing the Bing Api in Excel VBA
there you go : on sheet 1 you can fill in your AppID and keyword, click the butt(on…
…and on sheet 2 you get the top 10 search results
It uses the cells B1 and B2 as named ranges for MyKeyword and AppID, and has the code in the enclosed module. It also contains one of my AppId’s so no querying nasty shit, please.