Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add an option for login --no-localhost #2

Closed
mhawksey opened this issue Jan 12, 2018 · 5 comments
Closed

Add an option for login --no-localhost #2

mhawksey opened this issue Jan 12, 2018 · 5 comments

Comments

@mhawksey
Copy link

Interested in running this in Google Cloud Shell but currently login redirects to localhost. A --no-localhost option would be useful.

@rielzzapps
Copy link

rielzzapps commented Jan 12, 2018 via email

@grant
Copy link
Contributor

grant commented Jan 15, 2018

This is a good idea. Let's think about what the design should be:

$ clasp login --no-localhost
> Open: http://console.google.com/...
> Paste the token: ...
> Saved the credentials to ~/.clasp.rc.json.

gcloud's browserless solution: gcloud auth login --no-launch-browser

Is there a common name for browserless login flag (-f and/or --flag) we should use?

Temporary workaround:

Copy ~/.clasprc.json to your machine.

@mhawksey
Copy link
Author

The command/flag for the Firebase CLI is login --no-localhost As this is also Google Auth flow you might be able to reuse some of the code from their implementation https://github.com/firebase/firebase-tools

@grant
Copy link
Contributor

grant commented Jan 16, 2018

The initial login command didn't use localhost. When we tackle this feature, we can just use the previous login via command line with the code here:

clasp/index.js

Lines 336 to 355 in 7588283

const requestAuthorization = (refreshToken, cb) => {
var authUrl = oauth2Client.generateAuthUrl({
access_type: 'offline',
scope: ['https://www.googleapis.com/auth/script.management'],
});
console.log(LOG.AUTHORIZE(authUrl));
openurl.open(authUrl);
var rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
rl.question(LOG.AUTH_CODE, (code) => {
rl.close();
oauth2Client.getToken(code, (err, token) => {
if (err) return console.error(ERROR.ACCESS_TOKEN + err);
console.log(LOG.AUTH_SUCCESSFUL);
cb(token);
});
});
}

@grant
Copy link
Contributor

grant commented Jan 27, 2018

Will close this issue in the next release.

@grant grant closed this as completed Feb 2, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants