1

我一直在尝试通过 Excel 2010 在 VBA 中创建一个快速子例程,以自动通过 bit.ly 放置 URL 列表并将缩写链接复制回去以替换其原始链接。但是我收到一个错误 70: Permission Denied 运行时错误。我上过几门课程,这很有效,但我对 VBA 不是很熟悉,如果可能的话,可以在调试时使用一些帮助(这将是一个巨大的帮助)。这是代码:

Option Explicit

Dim IE As Object

Sub AutoAbbrev()

Set IE = CreateObject("InternetExplorer.Application")
Dim holdURL As String
Dim row_number As Integer
IE.Visible = True

For row_number = 101 To 112

holdURL = ""

If Range("b" & row_number).Value = "" Then GoTo Skip

IE.navigate "http://www.bitly.com" 'load bit.ly

Do While IE.readyState <> 4
    DoEvents
Loop

IE.document.all("shorten_url").Value = Range("b" & row_number).Value
IE.document.all("shorten_btn").Click

Do While IE.document.all("shorten_url").Value = Range("b" & row_number).Value Or IE.document.all("shorten_url").Value = ""
    DoEvents
Loop

holdURL = IE.document.all("shorten_url").Value
IE.document.all("shorten_url").Value = ""
Range("b" & row_number).Value = holdURL

Skip:
Next row_number

End Sub

Private Sub Command1_Click()

AutoAbbrev
End Sub

Private Sub Form_Unload(Cancel As Integer)
Set IE = Nothing
If TypeName(IE) <> "Nothing" Then Unload IE
Set IE2 = Nothing
If TypeName(IE2) <> "Nothing" Then Unload IE2

End Sub

在程序运行一次或多次迭代后,该错误主要出现在这一行:

Do While IE.document.all("shorten_url").Value = Range("b" & row_number).Value Or IE.document.all("shorten_url").Value = ""
        DoEvents
    Loop

如果可以提供任何具体的建议来帮助我克服这个困难,我将不胜感激。谢谢!

4

2 回答 2

1

自动化 Internet Explorer 应该始终是最后的手段,它很慢并且依赖于保持不变的页面结构。如果有可用的 API,最好选择 API,在这种情况下,稍微提供一个 API 用于扫描链接,您只需要获取您的 Authentication Token 并在下面输入它:

Public Function Shorten(url As String) As String

    Const token As String = "YOUR AUTHENTICATION TOKEN"
    Static oRequest As Object

    If oRequest Is Nothing Then Set oRequest = CreateObject("winhttp.winhttprequest.5.1")

    With oRequest
        .Open "GET", "https://api-ssl.bitly.com/v3/shorten?access_token=" & token & "&longUrl=" & url & "&format=xml", False
        .send
        If Left(Split(.responsetext, "txt>")(1), 2) = "OK" Then Shorten = Split(Split(.responsetext, "url>")(1), "<")(0)
    End With

End Function

然后,您可以将上述内容用作工作表中的函数

于 2013-09-25T09:54:33.463 回答
0

我发现这是因为页面未完全加载而发生的。IE 很慢,但有时您需要使用它,因为您在 Divs 中有动态内容,需要使用 object.click 事件打开。直到不是 appIE.Busy 和 appIE.ReadyState = 4: DoEvents: Loop 可以提供帮助,但它也可以挂起您的浏览器,因此使用计时器添加等待时间会有所帮助。

于 2020-07-30T03:06:21.093 回答