What is the difference between OAuth based and Token based authentication?

前端 未结 3 1652
孤独总比滥情好
孤独总比滥情好 2020-12-22 16:50

I thought that OAuth is basically a token based authentication specification but most of the time frameworks act as if there is a difference between them. For example, as sh

3条回答
  •  再見小時候
    2020-12-22 17:30

    When you are requesting resource from a secured web service, you can provide an authentication token on the call. The token acts as "secret code" for accessing the resource.

    OAuth is just specific type of token based authentication method.

提交回复
热议问题