Reputation: 551
I Have Issue with Azure Data Factory, when i tried to download file from API and sink to storage blob , it always error
this is sample api key : https://api.jotform.com/report/222961798189071?apikey=68ba253ddf42c986053f083619fe7591
and this is report link to download : https://www.jotform.com/excel/222961798189071
I've tried using HTTP connector to Pipeline source Copy data
but when i run the pipepline it always error "ErrorCode=HttpInvalidUrlAddress,'Type=Microsoft.DataTransfer.Common.Shared.HybridDeliveryException,Message=Http Url Address 'https://www.jotform.com/excel/222961798189071https://api.jotform.com/report/222961798189071?apikey=68ba253ddf42c986053f083619fe7591' is invalid.,Source=Microsoft.DataTransfer.ClientLibrary,'"
or am i missing some step?
Upvotes: 0
Views: 234
Reputation: 2764
Excel file has a lot of limitations in ADF and it does not support copy activity sink and data flow sink as well.
To resolve the error. Please follow below steps:
I took both source and sink as binary to perform copy activity.
Step 1: Source as HTTP
Step 2: Sink as binary from blob
Output:
This is my blob storage after Succeed. You can download and verify excel file data.
Upvotes: 0