Hi,
How can I authenticate my HttpClient so nobody can go and the URLs using another client, for example browser or Postman.
Thanks,
Jassim
Hi,
How can I authenticate my HttpClient so nobody can go and the URLs using another client, for example browser or Postman.
Thanks,
Jassim
Authorization is the mechanism that allows/denies access to a resource. There are many approaches to secure HTTP resources. I recommend starting with the standard docs to find an approach that best fits your security requirements.
There is a lot to read. Be sure to read the left side navigation links.
Authentication just verifies the user, not the client application. Once you publish a web site, it’s an open api that can be used by any tool that can make web requests.
You need to be sure the site does not allow abuse, that is don’t assume you code is calling it.
9 people are following this question.
How to implement NCryptSignHash and NCryptVerifySignature in C#?
What is diffrent beween CNG and Microsoft Key storage provider?
How to do encrypt and decrypt data using Cryptography API Next Generation (CNG) in C#?
How do I configure my multithreaded .NET 6 application to use all Windows CPU groups?