Skip to content

Commit

Permalink
add kakao to provider list
Browse files Browse the repository at this point in the history
  • Loading branch information
silentworks committed Jul 17, 2024
1 parent 313e43d commit e12e7e6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion supabase_auth/_async/gotrue_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,6 @@ async def sign_in_with_id_token(
access_token = credentials.get("access_token")
nonce = credentials.get("nonce")
options = credentials.get("options", {})
data = options.get("data") or {}
captcha_token = options.get("captcha_token")

response = await self._request(
Expand Down
1 change: 0 additions & 1 deletion supabase_auth/_sync/gotrue_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,6 @@ def sign_in_with_id_token(
access_token = credentials.get("access_token")
nonce = credentials.get("nonce")
options = credentials.get("options", {})
data = options.get("data") or {}
captcha_token = options.get("captcha_token")

response = self._request(
Expand Down
4 changes: 2 additions & 2 deletions supabase_auth/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,10 +305,10 @@ class SignInWithPhoneAndPasswordCredentials(TypedDict):

class SignInWithIdTokenCredentials(TypedDict):
"""
Provider name or OIDC `iss` value identifying which provider should be used to verify the provided token. Supported names: `google`, `apple`, `azure`, `facebook`, `keycloak` (deprecated).
Provider name or OIDC `iss` value identifying which provider should be used to verify the provided token. Supported names: `google`, `apple`, `azure`, `facebook`, `kakao`, `keycloak` (deprecated).
"""

provider: Literal["google", "apple", "azure", "facebook"]
provider: Literal["google", "apple", "azure", "facebook", "kakao"]
token: str
access_token: NotRequired[str]
nonce: NotRequired[str]
Expand Down

0 comments on commit e12e7e6

Please sign in to comment.