mirror of
https://github.com/langgenius/dify.git
synced 2025-07-18 06:41:29 +00:00
8 lines
229 B
Python
8 lines
229 B
Python
![]() |
from core.plugin.impl.base import BasePluginClient
|
||
|
|
||
|
|
||
|
class OAuthService(BasePluginClient):
|
||
|
@classmethod
|
||
|
def get_authorization_url(cls, tenant_id: str, user_id: str, provider_name: str) -> str:
|
||
|
return "1234567890"
|