I have 10 different data sources, and each of them has between 6 to 8 REST APIs. I'm currently using an API Management Service, but I'm trying to figure out the best way to handle pagination across all these APIs. Also, I'm leveraging App Insights and an Azure Function to fetch data from my SQL database, which helps determine the fields that need to be filled. Any suggestions on how to approach pagination management would be greatly appreciated!
2 Answers
The first thing you should check is whether your APIs support pagination. A good starting point is to implement a solution like Gridify, which offers a way to manage pagination effectively. You can find more info and examples on their GitHub page.
Have you considered using Workload Identity Federation (WIF)? While it's primarily for managing secrets, it might provide some useful insights or methods for handling your API integrations and their data fetch strategies.
Yeah, I’ve heard of WIF! I thought it was mainly for secrets management though. Can it help with pagination too?

That sounds interesting! I’ll look into Gridify for sure.