rtrim((string) env( 'WEEZTIX_OAUTH_AUTHORIZE_URL', 'https://login.weeztix.com/login' ), '/'), /* |-------------------------------------------------------------------------- | Token endpoint base (authorization code + refresh) |-------------------------------------------------------------------------- | | POST {auth_base_url}/tokens — official Weeztix: https://auth.weeztix.com/tokens | */ 'auth_base_url' => rtrim((string) env('WEEZTIX_AUTH_BASE_URL', 'https://auth.weeztix.com'), '/'), /* |-------------------------------------------------------------------------- | Weeztix API base URL |-------------------------------------------------------------------------- */ 'api_base_url' => rtrim((string) env('WEEZTIX_API_BASE_URL', 'https://api.weeztix.com'), '/'), /* |-------------------------------------------------------------------------- | Current user profile (token validity + company hints) |-------------------------------------------------------------------------- | | Should match the issuer of your access_token (usually same host as auth_base_url). | */ 'user_profile_url' => (string) env('WEEZTIX_USER_PROFILE_URL', 'https://auth.weeztix.com/users/me'), ];