Practicing and exploring
Test your knowledge and understanding by answering some questions, getting some hands-on practice, and exploring this chapter’s topics with deeper research.
Exercise 10.1 – Online material
JSON Web Tokens are an open, industry-standard RFC 7519 method for representing claims securely between two parties. JWT.IO allows you to decode, verify, and generate JWTs: https://jwt.io/introduction.
Exercise 10.2 – Practice exercise
Creating and deleting customers with HttpClient
Extend the Northwind.Mvc website project to have pages where a visitor can fill in a form to create a new customer, or search for a customer and then delete them. The MVC controller should make calls to the Northwind web service to create and delete customers.
Exercise 10.3 – Test your knowledge
Answer the following questions:
- When configuring an HTTP client, how do you specify the format of data that you prefer in the response...