如要向 Gemini API 驗證,最簡單的方法是設定 API 金鑰,詳情請參閱 Gemini API 快速入門導覽課程。如需更嚴格的存取控制,請改用 OAuth。本指南將協助您使用 OAuth 設定驗證。
本指南採用簡化的驗證方法,適用於測試環境。如果是正式環境,請先瞭解驗證和授權,再選擇適合應用程式的存取憑證。
目標
- 設定 OAuth 的雲端專案
- 設定應用程式預設憑證
- 在程式中管理憑證,而非使用
gcloud auth
必要條件
如要執行這項快速入門導覽課程,您需要:
設定 Cloud 專案
如要完成本快速入門導覽課程,請先設定 Cloud 專案。
1. 啟用 API
使用 Google API 前,請先在 Google Cloud 專案中啟用這些 API。
在 Google Cloud 控制台中啟用 Google Generative Language API。
2. 設定 OAuth 同意畫面
接著設定專案的 OAuth 同意畫面,並將自己新增為測試使用者。如果已為 Cloud 專案完成這個步驟,請跳至下一節。
在 Google Cloud 控制台中,依序前往「選單」 >Google Auth platform >「總覽」。
填寫專案設定表單,並在「目標對象」部分的「使用者類型」欄位中,選取「外部」。
填妥表單其餘部分,接受使用者資料政策條款,然後按一下「建立」。
目前可以略過新增範圍,然後按一下「儲存並繼續」。日後為 Google Workspace 組織以外的使用者建立應用程式時,您必須新增並驗證應用程式所需的授權範圍。
新增測試使用者:
- 前往Google Auth platform的 Audience page。
- 在「測試使用者」下方,按一下「新增使用者」。
- 輸入您的電子郵件地址和任何其他授權測試使用者,然後按一下「儲存」。
3. 授權電腦應用程式的憑證
如要以使用者身分驗證,並存取應用程式中的使用者資料,您需要建立一或多個 OAuth 2.0 用戶端 ID。Google 的 OAuth 伺服器會使用用戶端 ID 來識別個別應用程式。如果您的應用程式在多個平台上執行,則必須為每個平台分別建立用戶端 ID。
在 Google Cloud 控制台中,依序前往「選單」 >Google Auth platform >「用戶端」。
按一下「建立用戶端」。
依序點選「應用程式類型」 >「電腦應用程式」。
在「Name」(名稱) 欄位中,輸入憑證名稱。這個名稱只會顯示在 Google Cloud 控制台中。
按一下「建立」,系統會顯示「已建立 OAuth 用戶端」畫面,其中包含新的用戶端 ID 和用戶端密鑰。
按一下「確定」。新建立的憑證會顯示在「OAuth 2.0 Client IDs」(OAuth 2.0 用戶端 ID) 下方。
按一下下載按鈕儲存 JSON 檔案。這會儲存為
client_secret_<identifier>.json
,請將其重新命名為client_secret.json
,然後移至工作目錄。
設定應用程式預設憑證
如要將 client_secret.json
檔案轉換為可用的憑證,請將檔案位置傳遞至 gcloud auth application-default login
指令的 --client-id-file
引數。
gcloud auth application-default login \
--client-id-file=client_secret.json \
--scopes='https://www.googleapis.com/auth/cloud-platform,https://www.googleapis.com/auth/generative-language.retriever'
本教學課程中的簡化專案設定會觸發「Google 尚未驗證這個應用程式」對話方塊。這是正常現象,請選擇「繼續」。
這會將產生的權杖放在已知位置,以便 gcloud
或用戶端程式庫存取。
gcloud auth application-default login
--no-browser
--client-id-file=client_secret.json
--scopes='https://www.googleapis.com/auth/cloud-platform,https://www.googleapis.com/auth/generative-language.retriever'
設定應用程式預設憑證 (ADC) 後,大多數語言的用戶端程式庫幾乎不需要任何協助,就能找到這些憑證。
Curl
如要快速測試這項功能是否正常運作,請使用 curl 存取 REST API:
access_token=$(gcloud auth application-default print-access-token) project_id=<MY PROJECT ID>
curl -X GET https://generativelanguage.googleapis.com/v1/models \ -H 'Content-Type: application/json' \ -H "Authorization: Bearer ${access_token}" \ -H "x-goog-user-project: ${project_id}" | grep '"name"'
Python
在 Python 中,用戶端程式庫應會自動找到這些憑證:
pip install google-generativeai
測試這項功能的最簡單腳本可能如下:
import google.generativeai as genai
print('Available base models:', [m.name for m in genai.list_models()])
後續步驟
如果可以正常運作,即可開始嘗試對文字資料進行語意擷取。
自行管理憑證 [Python]
在許多情況下,您無法使用 gcloud
指令從用戶端 ID (client_secret.json
) 建立存取權杖。Google 提供多種語言的程式庫,讓您在應用程式中管理該程序。本節將以 Python 說明該程序。如需其他語言的這類程序對等範例,請參閱 Drive API 說明文件。
1. 安裝所需的程式庫
安裝 Python 適用的 Google 用戶端程式庫和 Gemini 用戶端程式庫。
pip install --upgrade -q google-api-python-client google-auth-httplib2 google-auth-oauthlib
pip install google-generativeai
2. 編寫憑證管理工具
如要盡量減少授權畫面點選次數,請在工作目錄中建立名為 load_creds.py
的檔案,以便快取 token.json
檔案,供日後重複使用,或在檔案過期時重新整理。
請先使用下列程式碼,將 client_secret.json
檔案轉換為可搭配 genai.configure
使用的權杖:
import os.path
from google.auth.transport.requests import Request
from google.oauth2.credentials import Credentials
from google_auth_oauthlib.flow import InstalledAppFlow
SCOPES = ['https://www.googleapis.com/auth/generative-language.retriever']
def load_creds():
"""Converts `client_secret.json` to a credential object.
This function caches the generated tokens to minimize the use of the
consent screen.
"""
creds = None
# The file token.json stores the user's access and refresh tokens, and is
# created automatically when the authorization flow completes for the first
# time.
if os.path.exists('token.json'):
creds = Credentials.from_authorized_user_file('token.json', SCOPES)
# If there are no (valid) credentials available, let the user log in.
if not creds or not creds.valid:
if creds and creds.expired and creds.refresh_token:
creds.refresh(Request())
else:
flow = InstalledAppFlow.from_client_secrets_file(
'client_secret.json', SCOPES)
creds = flow.run_local_server(port=0)
# Save the credentials for the next run
with open('token.json', 'w') as token:
token.write(creds.to_json())
return creds
3. 編寫程式
現在建立 script.py
:
import pprint
import google.generativeai as genai
from load_creds import load_creds
creds = load_creds()
genai.configure(credentials=creds)
print()
print('Available base models:', [m.name for m in genai.list_models()])
4. 執行程式
在工作目錄中執行範例:
python script.py
首次執行指令碼時,系統會開啟瀏覽器視窗,並提示您授權存取權。
如果尚未登入 Google 帳戶,系統會提示你登入。如果您登入了多個帳戶,請務必選取設定專案時設為「測試帳戶」的帳戶。
授權資訊會儲存在檔案系統中,因此下次執行範例程式碼時,系統不會提示您授權。
您已成功設定驗證。