from the docs:
You should now store the access token in a database. Associate it with the user it belongs to and use it from now on instead of sending the user through the authorization flow.
On the front-end, we are using the javascript connect function, but then we want the PHP side to write some user info to the db.
I understand how to actually receive the authorization/token and it is implemented. Then I store the token in the user database next to the user's ID (that we generate). That's all fine.
But when the user re-visits our application and is logged into Soundcloud, What do I do with this token? As stated above, I should automatically log them in? What exactly is the process here? I am confused about what I have to check against.
require_once 'path to my soundcloud.php file';– frankie Feb 4 at 19:20