What are the characteristics of an OAuth token?

后端 未结 7 1993
谎友^
谎友^ 2021-02-04 00:52

How many characters long can an oauth access token and oauth access secret be and what are the allowed characters? I need to store them in a d

7条回答
  •  不思量自难忘°
    2021-02-04 01:05

    To be specific, even if Oauth spec doesn't say anything, if you are using java and mysql then it will be 16 characters as we generally generate the tokens using UUID and store it as BINARY(16) in the database. I know these details as I have recently done the development using OAuth.

提交回复
热议问题