Authentication Sceme for RESTful API used by desktop app.
Posted
by user346087
on Stack Overflow
See other posts from Stack Overflow
or by user346087
Published on 2010-05-25T09:19:38Z
Indexed on
2010/05/25
9:21 UTC
Read the original article
Hit count: 169
I'm providing a RESTful API. This API is used by a third party desktop application. The API is currently secured using Basic Authentication. That isn't very secure because the credentials have to be stored in the client application. The communication between the desktop and API can also easily be intercepter.
The desktop application also communicates with a third party server (run by the publisher of the desktop application)
I am unable to figure out how the secure the API in a good way. Ideas?
© Stack Overflow or respective owner