Making an API Call
Learn how to communicate with external APIs.
We'll cover the following...
Understanding the dependencies
We can’t possibly store all data across users in in-memory objects till the end of time. That would never scale. We will also run into some very complex data structures if we start storing diverse spheres of information all in one place. This is where we need to rely on our system design skills to build distributed systems. Once we know how to build a server to process input, apply business logic, and return meaningful output, we must understand how to process ...