Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i'm using the examples provided in the "google-api-php-client"-Library (http://code.google.com/p/google-api-php-client/) to implement user login and authorization on my website with google services. I didn't make any changes to the examples, except adding my Client-ID, etc..

The authorization itself works fine: Users can login and i can fetch the provided informations. However, when leaving the page, the whole authorization procedure is called again; users are not remembered and need to grant permissions again, which is some kind of annoying and not typical for google-logins as i know them.

For example: On stackoverflow, i'm logged in with my google account. Whenever i revisit this site, i'm logged in automaticly, or (if logged out) just have to log in again - i do not have to confirm the general rights again. Using the examples on my site however, forces the user to allow access whenever the site is visited again.

Did i make any mistakes, when using the examples? What do i have to do, to avoid the permission request over and over again?

Thanks in advance for any kind of help!

share|improve this question

1 Answer

The Google Drive SDK documentation includes a complete PHP sample application that you can use as a reference to get started:

https://developers.google.com/drive/examples/php

Basically, once the user is logged in and you retrieve access token and refresh token, you store those credentials in a database and reuse them instead of asking the user to authenticate every time.

share|improve this answer
Thanks, Claudio! That link looks interesting. It seems, that i need some kind of "tokens for dummies"-guide. :-) Meanwhile i found out, that $client->setAccessType("online"); $client-> setApprovalPrompt("auto"); solves one part of the problem. I tried storing the token client-side as a cookie, but without success... – Elvis Aug 11 '12 at 6:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.