Questions tagged [devdefined-oauth]
11 questions
20
votes
2 answers
Recommended database structure for OAuth Provider
I am implementing an OAuth Provider using DevDefined library.
I wonder if there is any recommended database structure for storing consumer and token data on the server side.
Any advice on this would be appreciated.

B Faley
- 17,120
- 43
- 133
- 223
4
votes
3 answers
How to implement DotNetOpenAuth as Oauth provider in MVC3 .net?
I have been researching for a while now about how to implement an OAuth provider to secure my web api, but without good results.
For what I've seen so far, apparently there are only three libraries to develop an OAuth provider in .net:
1-…

Daniel
- 2,484
- 4
- 27
- 35
2
votes
0 answers
C# Closing a HttpWebRequest DevDefined
I'm having a problem connecting to a 3rd party API using the DevDefined OAuth library for C#:
https://github.com/bittercoder/DevDefined.OAuth
The connection has been working fine for over a year now, but in the last two days it has started failing…

JK.
- 21,477
- 35
- 135
- 214
2
votes
1 answer
Validating signed requests in C#
I'm trying to validate incoming signed requests in my C# server.
The requests comes from a social platform(naver).
All I get from them is a certificate(below).
I'm using DevDefinedOAuth
http://code.google.com/p/devdefined-tools/
They have a wiki…

Vincent
- 3,191
- 3
- 29
- 35
2
votes
1 answer
Passing querystring parameters in OpenPaths.cc api call with OAuth not working
I am trying to call the OpenPaths.cc rest service API which requires 2-legged OAuth. For this I use the DevDefined.OAuth library (I tried the nuget package and the latest from github). It works when I don't pass parameters in the querystring but…

harmen
- 163
- 2
- 8
1
vote
1 answer
Uploading file to Dropbox with Devdefined OAuth library
I am trying to upload a file to the Dropbox REST web service while at the same time using Devdefined's OAuth library.
This is the method I'm using:
public static void UploadFile(string filenameIn, string directoryIn, byte[] dataIn)
{
…

Tom
- 1,275
- 1
- 18
- 51
1
vote
1 answer
XML-File i send to the API gets encoded, how to prevent that?
I am using an API to download a XML File and read it, which works perfectly.
Now i want to add something and upload a new version of this XML-File, but it gets encoded and one cant read it with an XML Reader.
It looks like this:…

Timo Rzipa
- 41
- 9
1
vote
1 answer
Saving PDF with Devdefined's IConsumerRequest
I'm trying to save a PDF from QBO however I'm stuck on this bit:
How do i get the IConsumerRequest to return a stream instead of a string? ReadBody only seems to send string rather than binary data...
IConsumerRequest conReq =…

safetyOtter
- 1,430
- 14
- 26
1
vote
1 answer
Google API/OAUTH/NativeApplicationClient/OAuth2Authenticator > Logout?
I'm building a desktop app that connects to Googles APIs using OATH following the scheme found in this thread:
Google API v3 for dotnet; using the calendar with an API key
And all works fine. I have build a form that shows a WebBrowser to collect…

Niels Bosma
- 11,758
- 29
- 89
- 148
0
votes
2 answers
Update Etsy listing via API
Using DevDefined.OAuth I'm trying to update existing listing on Etsy.
Here is my code:
_consumerContext = new OAuthConsumerContext
{
ConsumerKey = _apiKey,
ConsumerSecret = _apiSecret,
SignatureMethod =…

Eugene Rozhkov
- 663
- 6
- 10
0
votes
1 answer
devdefined OAuth IConsumerRequest error
I'm getting this error:
"For the RSASSA-PKCS1-v1_5 signature method you must use the constructor which takes an additional AssymetricAlgorithm "key" parameter"
when I try to make a request with my IOAuthSession object.
I assume its referring to…

Martinffx
- 2,426
- 4
- 33
- 60