All my search results show how to create a Web API and that is not what I want.
I want to connect to a company who has a Web API. What are the basic steps to create a console application C# framework 4.5.2 to connect to get Authentication for their API methods based on the inclusion of a "Bearer" token in the standard "Authorization" header of any HTTP requests. Token is in JSON Web Token (JWT) format, and token can be retrieved though standard authentication methods.
Also basic steps to call that companies API methods, so I can upload a JSON file.
Thank you