Access Token vs Access Token Secret

Hi Mythz,

I noticed in the auth table there are 2 columns “Access Token” and “Access Token Secret”. Is there any design decision behind these 2 columns?

I based my auth provider code on the GoogleAuthProvider code. The flow there is an initial code is received and then this code is used to obtain the access token. So to my thinking the first code would be the access token secret and then the token received by using that code would be the access token. The class however only saves the final access token in the access token secret column and it appears the access token column is unused.

What is the access token column for?

Some OAuth providers require both.

Ah OK. Thanks for quick response.