Hi,
Any help would be appreciated!
I created a custom connector in Postman and imported it into a PowerApps connector. In the PowerApps custom connector configurator when I view the Swagger Editor and execute the connector it returns the data.
I'm trying to now use the connector in an app. For now to just test, I'm entering the code into the text value of a label component.
As you'll see below its not working.
First issue is that PowerApps doesn't seem to like the parameters "X-RapidAPI-Key" and "X-RapidAPI-Host". I think its the "-" characters. Do those need to be escaped somehow?
Second is a message "Invalid number of arguments: received 1, expected 4". Maybe that resolves after correcting the parameter issue?
The current syntax is:
DistanceColl.DistanceTo({route:[{t: "LDJ"}, {t: "HTO"}], car: false, X-RapidAPI-Key: "mykey", X-RapidAPI-Host: "distanceto.p.rapidapi.com" }).steps.distance.haversine
Here's screenshots of the syntax and the Swagger details:
Thanks for any help.
D