Reputation: 1261
I am trying to implement OAuth2 for this particular API in C#.
I want to implement it on my backend server for my own personal usage, with my own account, not for other users. My backend isn't a web application, so I don't really have a redirect_uri to authorize my "application". How can I solve this issue, as I do need the response_code to get the token and start using the protected API calls.
Upvotes: 0
Views: 101
Reputation: 980
I've done something like that to secure multiple Web APIs using this, have you tried it yet?
The documentation is very straight forward, and I've implemented my solution using it, a bit of try and error.
Upvotes: 0
Reputation: 103
Try rmjoia's advice, it's (one of) the best options for .NET See the source and client implementations
I have used them myself.
Upvotes: 1