Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Supabase Authentication Method sign_in No Longer Exists - Update Required #2086

Open
suysoftware opened this issue Mar 22, 2025 · 0 comments

Comments

@suysoftware
Copy link

suysoftware commented Mar 22, 2025

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:

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:

async def login(self, email: str, password: str) -> dict[str, Token]:

    # Use Supabase client to authenticate user and get tokens

    if response := self.supabase.auth.sign_in(  # <--- Problematic line

        email=email, password=password

    ):

        access_token = response.access_token

        refresh_token = response.refresh_token

        return {

            "access_token": Token(token=access_token, token_type="access"),

            "refresh_token": Token(

                token=refresh_token, token_type="refresh"

            ),

        }

    else:
        # Handle login failure
        return None # 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.

response = supabase.auth.sign_in_with_password(
    {
        "email": "[email protected]",
        "password": "example-password",
    }
)

Suggested Solution:

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!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant