-
Notifications
You must be signed in to change notification settings - Fork 383
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
chore: add example of puppeteer #265
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
// Copyright 2018, Google, LLC | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
/** | ||
* This is an example of using Puppeteer (https://github.com/GoogleChrome/puppeteer/) | ||
* to orchestrate sign in during an OAuth2 workflow. This is particularly | ||
* useful when writing end to end tests. | ||
*/ | ||
|
||
const { OAuth2Client } = require('google-auth-library'); | ||
const puppeteer = require('puppeteer'); | ||
const opn = require('opn'); | ||
const querystring = require('querystring'); | ||
const url = require('url'); | ||
const http = require('http'); | ||
|
||
const keys = require('../oauth2.keys.json'); | ||
|
||
/** | ||
* Keep a config.keys.json with a username and password | ||
* that correspond to your test google account: | ||
* { | ||
* "username": "your-user-name@gmail.com", | ||
* "password": "your-password" | ||
* } | ||
*/ | ||
const config = require('../config.keys.json'); | ||
|
||
async function main() { | ||
const oAuth2Client = await getAuthenticatedClient(); | ||
const url = 'https://www.googleapis.com/plus/v1/people?query=pizza'; | ||
const res = await oAuth2Client.request({ url }); | ||
console.log(res.data); | ||
} | ||
|
||
function getAuthenticatedClient() { | ||
let browser = null; | ||
return new Promise(resolve => { | ||
// create an oAuth client to authorize the API call. Secrets are kept in a `keys.json` file, | ||
// which should be downloaded from the Google Developers Console. | ||
const oAuth2Client = new OAuth2Client( | ||
keys.web.client_id, | ||
keys.web.client_secret, | ||
keys.web.redirect_uris[0] | ||
); | ||
|
||
// Generate the url that will be used for the consent dialog. | ||
const authorizeUrl = oAuth2Client.generateAuthUrl({ | ||
access_type: 'offline', | ||
scope: 'https://www.googleapis.com/auth/plus.me', | ||
prompt: 'consent' | ||
}); | ||
|
||
// Open an http server to accept the oauth callback. In this simple example, the | ||
// only request to our webserver is to /oauth2callback?code=<code> | ||
const server = http | ||
.createServer(async (req, res) => { | ||
if (req.url.indexOf('/oauth2callback') > -1) { | ||
// acquire the code from the querystring, and close the web server. | ||
const qs = querystring.parse(url.parse(req.url).query); | ||
console.log(`Code is ${qs.code}`); | ||
res.end('Authentication successful! Please return to the console.'); | ||
server.close(); | ||
|
||
// Now that we have the code, use that to acquire tokens. | ||
const r = await oAuth2Client.getToken(qs.code); | ||
// Make sure to set the credentials on the OAuth2 client. | ||
oAuth2Client.setCredentials(r.tokens); | ||
console.info('Tokens acquired.'); | ||
await browser.close(); | ||
resolve(oAuth2Client); | ||
} | ||
}) | ||
.listen(3000, async () => { | ||
// open the browser to the authorize url to start the workflow | ||
browser = await doLogin(authorizeUrl); | ||
}); | ||
}); | ||
} | ||
|
||
/** | ||
* Use the puppeteer library to sign into Google | ||
*/ | ||
async function doLogin(authorizeUrl) { | ||
const browser = await puppeteer.launch({ headless: false }); | ||
const page = await browser.newPage(); | ||
await page.goto(authorizeUrl); | ||
await page.mainFrame().waitForSelector('#identifierId'); | ||
console.log('typing email...'); | ||
await page.type('#identifierId', config.username); | ||
await page.mainFrame().waitForSelector('#identifierNext'); | ||
console.log('clicking next button...'); | ||
await page.click('#identifierNext'); | ||
console.log('waiting for password field...'); | ||
await page | ||
.mainFrame() | ||
.waitForSelector('#password input[type="password"]', { visible: true }); | ||
console.log('typing password...'); | ||
await page.type('#password input[type="password"]', config.password, { | ||
delay: 100 | ||
}); | ||
console.log('clicking sign in button...'); | ||
await page.click('#passwordNext', { delay: 100 }); | ||
return browser; | ||
} | ||
|
||
main(); |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong.