Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My application using JavaScript to connect to get access the Google drive API.(see https://developers.google.com/drive/quickstart-js). First time it ask the user permission. At the time Google may give *access_token* to my application. I want to use the token to access the Google drive data in future(That time the user may not be sign-in in Google account). Is it possible? if possible how to do? Is it possible to the application to ask Google "please I want to get permission of the user user@example.com"? It will be useful at the time of multiple-signing

EDIT: Exactly my question is "Offline access is possible in JavaScript-API?" See It is possible in PHP-API: https://developers.google.com/accounts/docs/OAuth2WebServer#offline

share|improve this question

1 Answer

up vote 1 down vote accepted

The JavaScript API uses the OAuth 2.0 Client flow which only returns an access token. If you set approval_prompt=auto in your request URL, the consent page for a given set of scopes will only be shown the first time the user goes through the sequence, so he will not have to grant access to your app again:

https://developers.google.com/accounts/docs/OAuth2UserAgent

share|improve this answer
The access_token will expire soon, right? If he is visiting after loging out of Google, what will happen? Google will ask him to log-in, right? I want to avoid it. Irrespective of Google-log-in-Session, I want to get access of Google Drive. Is there anyway to get long-lived-token? Is it possible only in server-flow (eg:- PHP API) only? – habeebperwad Dec 6 '12 at 4:44
You may want to use an application-owned account and not on a user’s Drive. Check service accounts at developers.google.com/drive/service-accounts – Claudio Cherubino Dec 6 '12 at 5:02
1  
I don't want application-owned accounts. Exactly my question is "Offline access is possible in JavaScript-API?" See It is possible in PHP-API: developers.google.com/accounts/docs/OAuth2WebServer#offline – habeebperwad Dec 6 '12 at 5:30
1  
Offline access is not possible, the Javascript API can only use the Client flow – Claudio Cherubino Dec 6 '12 at 6:01
Thanks alot. It helped me to understand more about client flow. Good Night. – habeebperwad Dec 6 '12 at 6:05

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.