The Excel web connector is not available on the Apple version of Microsoft Excel. To combat this, the query connector can be used with the Excel integration
Open Excel
Go to Data tab and click "Get Data (Power Query)"
Select "Blank query"
Overwrite existing script with script from below
Replace where it says "INSERT" with the values for URL, username, password
Hit next
Click "Configure connection"
Select "Basic"
Paste in Username and Password again
And connect
let
sourceUrl = "INSERT",
Source = Web.Contents(sourceUrl),
ImportedData = Csv.Document(Source, [Delimiter=",", Columns=null, Encoding=1252, QuoteStyle=QuoteStyle.Csv])
in
ImportedData