Hey <@498057949541826571> , I was trying to integrate onetap into my website, I am not using fronten...
a
Hey @rp_st , I was trying to integrate onetap into my website, I am not using frontend supertoken sdk , instead i am usogn google apis to get the id_token while using oneTap, now shall i call the same thirdparty signinup api and provide the id_token in code param
Copy code
curl --location --request POST 'http://localhost:3001/auth/signinup' \
--header 'rid: thirdpartypasswordless' \
--header 'Content-Type: application/json; charset=utf-8' \
--data-raw '{
    "thirdPartyId": "google",
    "clientType": "...",
    "redirectURIInfo": {
        "redirectURIOnProviderDashboard": "",
        "redirectURIQueryParams": {
            "code": "...",
        }
    }
}'
r
you cant provide id token as code. See the API spec, it has a provision wherein you can pass in the id_token and not the code
9 Views