OAuth 2 앱 구축

이 가이드에서는 이미 OAuth 2 앱을 등록했다고 가정합니다

등록하지 않은 경우 OAuth 2 코드 흐름을 참조하여 애플리케이션을 구성하세요.

애플리케이션 기본 사항

참고: client_id 및(PKCE를 사용하지 않는 경우) client_secret을 안전하게 저장하고 환경을 통해 액세스해야 합니다. 아래 예시에서는 CLIENT_IDCLIENT_SECRET 변수를 포함하는 .env 파일이 있다고 가정합니다.

Python
1import urllib, requests, requests.auth
2import os
3
4CLIENT_ID = os.environ.get('CLIENT_ID')
5CLIENT_SECRET = os.environ.get('CLIENT_SECRET')
6
7AUTHORIZE_URL = "https://applications.frame.io/oauth2/auth"
8TOKEN_URL = "https://applications.frame.io/oauth2/token"
9# The scopes you've chosen for your app, space-delimited
10SCOPE = "offline account.read asset.read"
11# The callback URI for your app
12REDIRECT_URI = "https://yourapp.domain/callback"

인증 서버 호출

먼저 애플리케이션에서 Frame.io 인증 서버를 호출해야 합니다. 그러면 사용자가 로그인 페이지로 리디렉션됩니다.

Python
1import uuid
2from urllib.parse import urlencode
3
4def create_auth_url():
5 credentials = {
6 'response_type': 'code',
7 'redirect_uri': REDIRECT_URI,
8 'client_id': CLIENT_ID,
9 'scope': SCOPE,
10 'state': str(uuid.uuid4())
11 }
12 url = (AUTHORIZE_URL + "?" + urlencode(credentials))
13 return url

콜백

그런 다음 인증 서버가 REDIRECT_URIGET 요청을 수행하며, 차례로 TOKEN_URL을 호출해야 합니다. 이 콜백은 애플리케이션이 PKCE를 사용하도록 구성되었는지 여부에 따라 약간 다릅니다.

PKCE 미사용

PKCE를 사용하지 않는 경우 콜백에 CLIENT_IDCLIENT_SECRET을 포함하는 Authorization 헤더가 포함되어야 합니다.

Python
1def callback():
2 state = request.args.get('state')
3 scope = request.args.get('scope')
4 code = request.args.get('code')
5 error = request.args.get('error')
6
7 if error:
8 return "Error: " + error
9
10 # Set up for client authorization and set up the data you need to send.
11 client_auth = requests.auth.HTTPBasicAuth(CLIENT_ID, CLIENT_SECRET)
12
13 post_data = {
14 "grant_type": "authorization_code",
15 "code": code,
16 "redirect_uri": REDIRECT_URI,
17 "state": state,
18 "scope": SCOPE
19 }
20
21# Send a POST request with the data you need to receive an access token.
22# If everything goes well, it will be returned to you and you can use it with
23# Frame.io.
24
25 response = requests.post(TOKEN_URL, auth=client_auth, data=post_data)
26 return response.text

PKCE 사용

PKCE를 사용하는 경우 콜백에 Authorization 헤더가 포함되지 않아야 하지만, TOKEN_URL로 다시 호출할 때 POST 요청 본문에 CLIENT_ID반드시 포함되어야 합니다.

Python
1def callback():
2 state = request.args.get('state')
3 scope = request.args.get('scope')
4 code = request.args.get('code')
5 error = request.args.get('error')
6
7 if error:
8 return "Error: " + error
9
10# If using PKCE, you must include the CLIENT_ID in your request body
11 post_data = {
12 "grant_type": "authorization_code",
13 "code": code,
14 "redirect_uri": REDIRECT_URI,
15 "state": state,
16 "scope": SCOPE
17 "client_id": CLIENT_ID
18 }
19
20# Send a POST request with the data you need to receive an access token.
21# If everything goes well, it will be returned to you and you can use it with
22# Frame.io
23
24 # If using PKCE, use the below request with no auth
25 response = requests.post(TOKEN_URL, data=post_data)
26
27 return response.text

성공적인 응답

콜백에 성공하면 다음과 같은 JSON 응답을 받게 됩니다.

1{
2 "access_token":"BEARER_TOKEN",
3 "expires_in":3600,
4 "refresh_token":"REFRESH_TOKEN",
5 "scope":"account.read offline",
6 "token_type":"bearer"
7}

이제 access_token을 사용하여 로그인한 사용자를 대신해 Frame.io에 API 호출을 수행할 수 있으며, 이 토큰이 만료된 후 refresh_token을 사용하여 새 access_token을 요청할 수 있습니다.