OAuth Token Request for Etsy

Asked By 10 points N/A Posted on -
qa-featured

I want to get the verification / authentication tokens from an Etsy store of a client so I can save it and use it whenever he logs in to my database app. Can you show me how? Is there a library for .NET 4.0 apps available ?

SHARE
Answered By 55 points N/A #94670

OAuth Token Request for Etsy

qa-featured

A very easy and quick way for the forms that need authentication method is to use the membership and login controls from the .Net libraries. It will allow you to store and manage any kind of information about this. There are can be as many fields as you want.

The logic behind this is that they make a capsule for every user and store the information like password, session number in this capsule and then you can use this capsule.

An alternative way to use it with forums is to use it as a WCF from the .Net services. This will allow you to use any kind of forms on your website for any type of application that needs the authentication methods to be configured.

 

Related Questions