kopia lustrzana https://github.com/transitive-bullshit/chatgpt-api
Merge pull request #129 from tpholston/main
commit
8169c9c44b
|
@ -40,12 +40,14 @@ export async function getOpenAIAuth({
|
||||||
email,
|
email,
|
||||||
password,
|
password,
|
||||||
timeoutMs = 2 * 60 * 1000,
|
timeoutMs = 2 * 60 * 1000,
|
||||||
browser
|
browser,
|
||||||
|
isGoogleLogin
|
||||||
}: {
|
}: {
|
||||||
email?: string
|
email?: string
|
||||||
password?: string
|
password?: string
|
||||||
timeoutMs?: number
|
timeoutMs?: number
|
||||||
browser?: Browser
|
browser?: Browser
|
||||||
|
isGoogleLogin?: boolean
|
||||||
}): Promise<OpenAIAuth> {
|
}): Promise<OpenAIAuth> {
|
||||||
let page: Page
|
let page: Page
|
||||||
let origBrowser = browser
|
let origBrowser = browser
|
||||||
|
@ -76,7 +78,23 @@ export async function getOpenAIAuth({
|
||||||
waitUntil: 'networkidle0'
|
waitUntil: 'networkidle0'
|
||||||
})
|
})
|
||||||
])
|
])
|
||||||
await page.waitForSelector('#username')
|
if (isGoogleLogin) {
|
||||||
|
await page.click('button[data-provider="google"]')
|
||||||
|
await page.waitForSelector('input[type="email"]')
|
||||||
|
await page.type('input[type="email"]', email, { delay: 10 })
|
||||||
|
await Promise.all([
|
||||||
|
page.waitForNavigation(),
|
||||||
|
await page.keyboard.press('Enter')
|
||||||
|
])
|
||||||
|
await page.waitForSelector('input[type="password"]', { visible: true })
|
||||||
|
await page.type('input[type="password"]', password, { delay: 10 })
|
||||||
|
await page.keyboard.press('Enter')
|
||||||
|
await Promise.all([
|
||||||
|
page.waitForNavigation({
|
||||||
|
waitUntil: 'networkidle0'
|
||||||
|
})
|
||||||
|
])
|
||||||
|
} else {
|
||||||
await page.type('#username', email, { delay: 10 })
|
await page.type('#username', email, { delay: 10 })
|
||||||
await page.click('button[type="submit"]')
|
await page.click('button[type="submit"]')
|
||||||
await page.waitForSelector('#password')
|
await page.waitForSelector('#password')
|
||||||
|
@ -88,6 +106,7 @@ export async function getOpenAIAuth({
|
||||||
})
|
})
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const pageCookies = await page.cookies()
|
const pageCookies = await page.cookies()
|
||||||
const cookies = pageCookies.reduce(
|
const cookies = pageCookies.reduce(
|
||||||
|
|
Ładowanie…
Reference in New Issue