Tagged Questions
2
votes
1answer
107 views
Securing API on sub-domain - users logged in using OAuth providers
I have an MVC 4 website (http://myWebsite.com) that uses a few OAuth providers (Google, Facebook, Twitter, MS Live) for users to login - it uses the DotNetOpenAuth library.
I also have an API on the ...
0
votes
1answer
109 views
GetTokenSecret value by dotnetopenauth
I tried to Get Token secret by using dotnetopenoauth.
I searched in it and find
SimpleConsumerTokenManager
class which has
GetTokenSecret()
which seems fine to me but could not making an ...
0
votes
2answers
262 views
Where have they hidden the DotNetOpenAuth API documentation?
I am pretty sure I looked in the most common places but I can't seem to find the documentation for the DotNetOpenAuth API. Almost every link forwards to docs.dotnetopenauth.net which doesn't seem to ...
4
votes
2answers
3k views
What is best for auth ASP.NET MVC REST API? OAuth 2.0 or OAuth 1.0?
We are building a REST API using ASP.NET MVC. This API is similar in principle and usage to the Factual v3 API. They use 2-legged Oauth 1 for their API. Our design is very similar in that ...
0
votes
1answer
134 views
Recommended method/authentication engine to secure an API
Hello and thanks for looking.
Background
I am designing an application that will host certain pieces of information/data for third-party websites via an API and must be accessed via authenticated ...
5
votes
1answer
852 views
MVC based API - how to implement OAuth?
I have been trying for hours now to get OAuth working on with an API that I am working on, and obviously my approach must be wrong, because I constantly hit dead ends.
What I have got:
- An API that ...
53
votes
2answers
15k views
Securing my REST API with OAuth while still allowing authentication via third party OAuth providers (using DotNetOpenAuth)
I have a product with a straightforward REST API so that users of the product can directly integrate with the product's features without using my web user interface.
Recently I have been getting ...
0
votes
2answers
402 views
Why is my third Twitter request always timing out?
This is getting annoying. I have an application that is supposed to post status information on Twitter. It is written in C# and uses DotNetOpenAuth for authentication.
I make a status update with the ...
1
vote
1answer
208 views
Can I store a request token and if not, how can I obtain one without repeating the authorization procedure?
I'm attempting to use the Twitter API with the DotNetOpenAuth library.
I have a working sample that posts tweets, but unfortunately, it forces the user to authorize the application each time it ...
6
votes
1answer
4k views
OAuth Simple Service Provider
I am struggling trying to pick apart the OAuth Service Provider example which is included in DotNetOpenAuth. I searched SO and found a few similar/related posts, but nothing really useful. Is there ...