Quiz
- can you go over how you construct the url portion for http
The URL is just a string. In CoffeeRun and many other REST APIs, there's a "base" part and a "parameter". So you can construct them with string concatenation:
- Can you give more example?
Sure. How about the Fake Store API Try the following:
- How does password encryption work?
It's a one-way hash function. I cover this in CS 304; you can check it out here: bcrypt