In oAuth 2 if I get access token on client side using "implicit" grant, can I use this token on server side (like if I got this token using "authorization code" grant)?
I have a website that shows list of files from some websites (google drive, dropbox, instagram) This website gets access token on client side like here (Using the implicit grant). It works fine. But now I want to do some request on server side. Can I use old token or I should get new token using "authorization code" grant?