https://supertokens.com/ logo
Join Discord
Powered by
# general
  • h

    HHChift

    09/01/2025, 12:33 PM
    Any issue going on ? Our dev environment seems down
  • d

    Darko

    09/02/2025, 9:39 AM
    I've been working on an integration, but I'm not finished yet
  • d

    Darko

    09/02/2025, 9:39 AM
    will announce it when done - it can be used as a starting point with TanStack + SuperTokens
  • d

    Darko

    09/02/2025, 9:39 AM
    thanks for the detailed feedback! 🙂
  • d

    Darko

    09/02/2025, 9:39 AM
    and thank you for reporting it in #1224328457589227540
  • d

    Diogo

    09/03/2025, 5:15 PM
    just spent 2 days implementing supertokens to find out the go sdk doesnt support 2fa
  • d

    Diogo

    09/03/2025, 5:15 PM
    there is no perfect auth jesus
  • d

    Diogo

    09/03/2025, 5:33 PM
    is there any workaround?
  • s

    SciSaif

    09/04/2025, 7:02 AM
    Hey folks. I have been having a very annoying issue for months now. I have a central express backend with the supertokens setup like this. This is hosted on example.com/api/ However, I have three different next.js frontends that use the same backend. They are hosted on example.com, example.com/vod, example.com/prebook. THE PROBLEM: The whole setup works without any problems but every now and then I get some kind of issue with cookies. ``` ``` There was also one error that said something like "duplicate cookies" or something. Can someone guide me please? I was not able to reproduce this bug, it just happens randomly. I also have a question: What should be websiteDomain in the supertokens config on the backend if I have 3 different frontends? https://cdn.discordapp.com/attachments/603466164219281426/1413056486375948329/image.png?ex=68ba8ae7&is=68b93967&hm=471152778cdc2277f26f3f016993dbd83b481d2429cd669fb247cafc08c020fc& https://cdn.discordapp.com/attachments/603466164219281426/1413056487080857610/image.png?ex=68ba8ae7&is=68b93967&hm=6aa0f2e532937049cfd68785cd60d63a4f3791b3d0a41055dbd8433db42fe15d&
  • s

    SciSaif

    09/04/2025, 7:49 AM
    These are some more logs https://cdn.discordapp.com/attachments/603466164219281426/1413068530445975593/message.txt?ex=68d056df&is=68cf055f&hm=c781b2287fed9a1b3755ff25fb35c0c6d9cf5c8201f2d4f252ae39eb0d789d2a&
  • u

    unemxr

    09/04/2025, 8:25 AM
    Hello @SuperTokens , I see that you have a planned downed time on you status page for the US servers, but we are having issues in EU with our dev environement (prod is fine for now). Is this to be expected ?
  • s

    SciSaif

    09/11/2025, 12:03 PM
    Hey folks, can we use google login in react native with supertokens?
  • m

    michin

    09/12/2025, 12:39 AM
    PASSKEY GOLANG SUPPORT????
  • d

    Darko

    09/12/2025, 7:09 AM
    #1224328457589227540 😉
  • d

    Darko

    09/12/2025, 7:10 AM
    I don't think we have it (yet), but I'll check to make sure
  • u

    umbrella corporation

    09/13/2025, 10:32 AM
    @Darko any updates?
  • t

    Thomas

    09/18/2025, 1:10 AM
    just locked in lately and it's really pays....feel free to reach out for tips https://cdn.discordapp.com/attachments/603466164219281426/1418041550319128776/3df68dcb-5298-47cd-ba3c-5c54acef5e00.png?ex=68ccad9b&is=68cb5c1b&hm=c9e8cef84c852ca3d26a734521b1a46613803080c982b0f2fc79c62d7066830a&
  • t

    Thomas

    09/18/2025, 7:10 PM
    Hey, everyone! I just wanted to share that I’ve had some great success with drop ship ping! I totally remember how daunting it was when I started. But after overcoming those initial hurdles, I’ve managed to make $4k, and I can't wait to share my insights with you. Whether you're a newbie or looking to enhance your current approach, there's plenty for us to explore together https://cdn.discordapp.com/attachments/603466164219281426/1418313254928781374/IMG-20250902-WA0017.png?ex=68cdaaa6&is=68cc5926&hm=cc403ebf39157fdcef4d8c213b61def6ff6173e8f1be9948adb2d02ce4f058f9&
  • m

    Mantas | Culturio

    09/19/2025, 12:40 PM
    Yo, has anyone managed to correctly get sessions to refresh on react native?
  • t

    Thomas

    09/19/2025, 12:42 PM
    just locked in lately and it's really pays....feel free to reach out for tips https://cdn.discordapp.com/attachments/603466164219281426/1418578107111313579/3df68dcb-5298-47cd-ba3c-5c54acef5e00.png?ex=68cea150&is=68cd4fd0&hm=08e4f32c99fab880981007c548ecab27f2f9acc968d707cbc372965ce238ead4&
  • r

    ruslan

    09/22/2025, 3:34 PM
    TOTP in self-hosted SuperTokens — free or paid?” I’m using Django (Cookiecutter, DRF) together with self-hosted SuperTokens. In the documentation I found the note: “This feature is only available to paid users.” Does this limitation also apply to the self-hosted version, or is it only for the Cloud version?
  • a

    AwkwardSilence

    09/23/2025, 5:57 PM
    Hi everyone, new to this community. Wanted to ask a question here! I’m configuring Apple SSO with multiple clients in my SuperTokens backend. Here’s my provider setup:
    Copy code
    ProviderInput(
        config=ProviderConfig(
            third_party_id="apple",
            clients=[
                ProviderClientConfig(
                    client_id=self.config.APPLE_CLIENT_ID,
                    additional_config={
                        "keyId": self.config.APPLE_KEY_ID,
                        "teamId": self.config.APPLE_TEAM_ID,
                        "privateKey": self.config.APPLE_PRIVATE_KEY,
                    }
                ),
                ProviderClientConfig(
                    client_type="web",
                    client_id=self.config.APPLE_CLIENT_ID_WEB,
                    additional_config={
                        "keyId": self.config.APPLE_KEY_ID_WEB,
                        "teamId": self.config.APPLE_TEAM_ID_WEB,
                        "privateKey": self.config.APPLE_PRIVATE_KEY_WEB,
                    }
                ),
            ],
        ),
    )
    My understanding is that if the frontend does not specify a clientType, SuperTokens should pick the first config (the one without client_type) as the default. However, in my mobile app (Expo + AppleAuthentication), when I don’t specify clientType, it doesn’t seem to pick the default provider config, and the login fails. Any guidance on how to make the default provider config work without clientType would be super helpful.
  • d

    Darko

    09/24/2025, 11:53 AM
    #1224328457589227540 😉
  • d

    Dramamine

    09/29/2025, 6:44 AM
    Howdy, folks! Are there any easy or ready-to-go implementations of supertokens on a Hono based API? (On Node, not serverless)
  • d

    Darko

    09/29/2025, 10:00 AM
    I had one as WIP in a repo somewhere
  • d

    Darko

    09/29/2025, 10:00 AM
    let me check 🙂
  • u

    ⭐AAA!!!⭐

    10/01/2025, 8:01 AM
    hi looking for client has good idea or project as software engineer
  • m

    michin

    10/03/2025, 10:51 PM
    GOLANG PASSKEYS????
  • d

    Darko

    10/04/2025, 7:28 AM
    best I can do is spam engineering more to implement it (for now) 😅
  • m

    michin

    10/04/2025, 7:29 AM
    i will be back next month 🙂