In MS-Access, I used this VBA Code to open a website in Internet Explorer, or to recieve data from the website, that needs an additional REFERER in the URL.
I used this code:
Const URL = "https://www.XXX-portal.com/index.php?button=Search&all=1"
Set html = New MSHTML.HTMLDocument
Set xhr = CreateObject("MSXML2.ServerXMLHTTP.6.0")
RefString = "eng_name=--" & " " & "alle" & " " & "objects" & " " & "--&" & "order_by=2&land_abk=ni&ger_id=0"
With xhr
.Open "POST", URL, False
.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
.send RefString
html.body.innerHTML = .responseText
End With
Now i need to call the same website from PowerApps, with a flow that includes the (premium) HTTP-Request connector:
Questions:
1) Is it possible to send a Referer with this connector?
2) What do I have to enter in the connector fields to access the website from SharePoint?
Thanks for any support!


Report
All responses (
Answers (