http://code.google.com/p/google-api-php-client/wiki/UsingTheLibrary indicates: "Do note you should replace the session storage of the OAuth key with a
real storage (on disk, in your mysql database, etc) before releasing
your app."
Can you provide an example of where exactly in the code this storage and retrieval should take place? What field should we use to identify the user (i.e. what info will we have access to when they login via OAuth 2.0 in order to look up the correct token)? Is the refreshToken the only other field we need to store?
Any existing example within the google-api-php-client would be fine to show where this storage and retrieval should happen.
I really appreciate any help you can offer! I can handle the MySQL end, but OAuth is still a bit new to me...