Hi and thanks in advance,
I have a URL checking function that has been working well for me but, due to a restriction on the use of API calls, will need to be recoded.
Basically, I have a list of URL’s (not links) in column A of a sheet and I want to loop through them and check that they are returning status 200 and then outputting ‘OK’ in column B or if not status = 200 then ‘FAILED’.
I also want to output any redirect URL to column C
The API I was using accessed a function in IE and an 3rd party reference library which provided a method to imlement a timeout so the code did not hang when URL not found.
So I need something that does not use API calls, that can output the status and any redirect and has a timeout feature.
I tried using MSXML2.XMLHTTP (code below), which works to produce a correct status, but that does not seem to have any timouts and I don’t know if it can return a redirected URL.
I then tried using WinHttp.WinHttpRequest.5.1 instead, in the same code, which I believe does have timeouts and can return a redirected URL but this always errors out with ‘The server name or address could not be resolved’ error no matter what URL in the list it checks.
Thanks
I have a URL checking function that has been working well for me but, due to a restriction on the use of API calls, will need to be recoded.
Basically, I have a list of URL’s (not links) in column A of a sheet and I want to loop through them and check that they are returning status 200 and then outputting ‘OK’ in column B or if not status = 200 then ‘FAILED’.
I also want to output any redirect URL to column C
The API I was using accessed a function in IE and an 3rd party reference library which provided a method to imlement a timeout so the code did not hang when URL not found.
So I need something that does not use API calls, that can output the status and any redirect and has a timeout feature.
I tried using MSXML2.XMLHTTP (code below), which works to produce a correct status, but that does not seem to have any timouts and I don’t know if it can return a redirected URL.
VBA Code:
Public Function Test_URL_OTHER_METHOD(ByVal url As String) As String
Dim oURL As Object
Set oURL = CreateObject("MSXML2.XMLHTTP")
'Set oURL = CreateObject("WinHttp.WinHttpRequest.5.1")
With oURL
.Open "HEAD", url, False
.Send
If .Status = 200 Then
Test_URL_OTHER_METHOD = "OK"
Else
Test_URL_OTHER_METHOD = "FAILED"
End If
End With
Set oURL = Nothing
End Function
I then tried using WinHttp.WinHttpRequest.5.1 instead, in the same code, which I believe does have timeouts and can return a redirected URL but this always errors out with ‘The server name or address could not be resolved’ error no matter what URL in the list it checks.
Thanks