Hey,
I was going through your documentation to implement the OAuth flow.
As we are building a tool helping plugin creators to implement SignIn through our platform, I wanted to know if that’s okay if the API plugin domain is not the same as the AUTH domain.
Here is an example (truncated) manifest:
{
"auth": {
"type": "oauth",
"client_url": "https://auth.pluginlab.ai/authorize", << DIFFERENT URL
"authorization_url": "https://auth.pluginlab.ai/auth", << DIFFERENT URL
"authorization_content_type": "application/json",
},
"api": {
"type": "openapi",
"url": "https://example.com/openapi.yaml", << DIFFERENT URL
"is_user_authenticated": false
},
}
In this example you can see API domain is example.com whereas AUTH domain is auth.pluginlab.ai.
Would that be okay?
Let me know if that needs to be clarified
Thanks for your response