How to use the continuationToken from Rest API of Table Storage in web activity while using Azure Data Factory?
I recently used the web activity to get the list of table names from table storage using Rest API.
I didn't get the list of tables due to exceeding the limit of having more than 1000 tables.
I found one alternative solution to one of the suitable questions in my case which is the below steps. I tried to implement these steps but didn't get any luck.
Step 1 : Initialize a variable ContinuationToken
as blank**
Step 2 :** Perform Copy activity with the ContinuationToken
value (with merge behavior)**
Step 3 :** Perform Web activity
Step 4 : Set the variable ContinuationToken
with continuation token obtained from the Web activity.
Step 5 : Repeat steps 2-4 using the Until activity - until the continuation token is not returned.
Can someone help me implement the above steps with gifs or images so that I can implement them in my case?