Jag har konverterat ett API anrop från Postman till VB6 kod med Chilkat men när jag kör programmet får jag "Klassen har inte registrerats" på radenChilkat i VB6
success = rest.Connect("api.myweblog.se", port, bTls, bAutoReconnect) Dim rest As New ChilkatRest
Dim success As Long
Dim bTls As Long
Dim port As Long
Dim bAutoReconnect As Long
Private Sub Form_Load()
' URL: https://api.myweblog.se/api_v2.php
bTls = 1
port = 443
bAutoReconnect = 1
success = rest.Connect("api.myweblog.se", port, bTls, bAutoReconnect)
If (success <> 1) Then
Debug.Print "ConnectFailReason: " & rest.ConnectFailReason
Debug.Print rest.LastErrorText
Exit Sub
End If
End Sub
Jag har kört regsvr32 på aktuell dll med lyckat resultat, den ligger med i Reference i projektet.
Hur läser jag detta?
/Håkan