What is the equivilent of `connectionScope` in Auth0-SPA-JS?

Currently I have the following in my spa…

    createAuth0({
      domain: "...",
      client_id: "...",
      redirect_uri: window.location.origin,
      prompt: "consent",
      useRefreshTokens: true,
    }),

A coworker did the following for the native driver…

Auth0
            .webAuth(session: .shared, bundle: Bundle.main)
            .scope("...")
            .audience("...")
            .connectionScope("https://www.googleapis.com/auth/contacts.readonly,https://mail.google.com/")
            .parameters(["access_type":"offline", "approval_prompt":"force"])
            .audience("...")

The question is with regards to the connection scope. I don’t see an equivalent in the spa library. Would that just be using the client cred and user endpoint to get the Google Access token or what would I do for similar functionality?

Hey @jgleason!

I haven’t tested this myself, but you could try adding the connection_scope option to your configuration - See:

Keep us posted!

Sure it might take me a bit but I will try just adding it and seeing what happens. I didn’t just try it because I didn’t see it in the code.

1 Like

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.