Anything on this? I'm scoping Azure as a solution for our Data Engineering team, and it's a red flag that this problem prevents us from using Azure to integrate our necessary APIs but it hasn't been fixed on Azure's end after 1.5 years.
Same scenario here as the other two individuals have expressed.
We have a base url of:
and relative url needed is:
- /products?page=1&items_per_page=20&attributes=all
When I put these in - I get an error in my pipeline copy activity - but clearly the 'v3/1' has been removed from the base url and it's just sending https://address.com/products?page=1&items_per_page=20&attributes=all
We need this to work, or wont be able to paginate. I can get it to work by hardcoding the whole baseurl and relative url into the linked services base url, but this will only work if we have 1 page worth of data, and some of these have dozens of pages of data and require pagination - thus treating base url and relative url seprately.