You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm encountering an AttributeError: 'SyncSupabaseAuthClient' object has no attribute 'sign_in' error when trying to log in. It appears there might be an outdated method call in the Supabase authentication code.
Error Traceback:
2025-03-22 21:08:39 - ERROR - 47.184.120.203:57674 - "POST /v3/users/login HTTP/1.1" 500 2025-03-22 21:33:30 - ERROR - Error in base endpoint login() - 'SyncSupabaseAuthClient' object has no attribute 'sign_in' Traceback (most recent call last): File "/app/core/main/api/v3/base_router.py", line 51, in wrapper func_result = await func(*args, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/app/core/main/api/v3/users_router.py", line 429, in login return await self.services.auth.login( # type: ignore ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/app/core/main/services/auth_service.py", line 77, in login return await self.providers.auth.login(email, password) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/app/core/providers/auth/supabase.py", line 115, in login if response := self.supabase.auth.sign_in( ^^^^^^^^^^^^^^^^^^^^^^^^^^ AttributeError: 'SyncSupabaseAuthClient' object has no attribute 'sign_in'. Did you mean: 'sign_up'? 2025-03-22 21:33:30 - ERROR - 47.184.120.203:57763 - "POST /v3/users/login HTTP/1.1" 500 2025-03-22 21:33:55 - ERROR - Error in base endpoint login() - 'SyncSupabaseAuthClient' object has no attribute 'sign_in' Traceback (most recent call last): File "/app/core/main/api/v3/base_router.py", line 51, in wrapper func_result = await func(*args, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/app/core/main/api/v3/users_router.py", line 429, in login return await self.services.auth.login( # type: ignore ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/app/core/main/services/auth_service.py", line 77, in login return await self.providers.auth.login(email, password) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/app/core/providers/auth/supabase.py", line 115, in login if response := self.supabase.auth.sign_in( ^^^^^^^^^^^^^^^^^^^^^^^^^^ AttributeError: 'SyncSupabaseAuthClient' object has no attribute 'sign_in'. Did you mean: 'sign_up'?
Code Snippets:
Current Code in r2r/core/providers/auth/supabase.py:
asyncdeflogin(self, email: str, password: str) ->dict[str, Token]:
# Use Supabase client to authenticate user and get tokensifresponse:=self.supabase.auth.sign_in( # <--- Problematic lineemail=email, password=password
):
access_token=response.access_tokenrefresh_token=response.refresh_tokenreturn {
"access_token": Token(token=access_token, token_type="access"),
"refresh_token": Token(
token=refresh_token, token_type="refresh"
),
}
else:
# Handle login failurereturnNone# or raise an exception as appropriate
Corrected Code based on Supabase Documentation:
According to the official Supabase documentation, the correct method to sign in with email and password is sign_in_with_password.
Could you please update the login function in r2r/core/providers/auth/supabase.py to use sign_in_with_password instead of sign_in? This should resolve the AttributeError and align the code with the current Supabase library.
Thank you for your time and attention to this issue!
The text was updated successfully, but these errors were encountered:
Hi R2R Team,
I'm encountering an
AttributeError: 'SyncSupabaseAuthClient' object has no attribute 'sign_in'
error when trying to log in. It appears there might be an outdated method call in the Supabase authentication code.Error Traceback:
Code Snippets:
Current Code in
r2r/core/providers/auth/supabase.py
:Corrected Code based on Supabase Documentation:
According to the official Supabase documentation, the correct method to sign in with email and password is
sign_in_with_password
.Suggested Solution:
Could you please update the
login
function inr2r/core/providers/auth/supabase.py
to usesign_in_with_password
instead ofsign_in
? This should resolve theAttributeError
and align the code with the current Supabase library.Thank you for your time and attention to this issue!
The text was updated successfully, but these errors were encountered: