Skip to content

Commit

Permalink
MicrosoftOnline Oauth2.0 Functional
Browse files Browse the repository at this point in the history
1. Oauth 2.0 Client MicrosoftOnline implemented and functional.
2. pageSize is positive int
  • Loading branch information
rossaddison committed Jan 9, 2025
1 parent 5e96194 commit 8ab7010
Show file tree
Hide file tree
Showing 48 changed files with 939 additions and 436 deletions.
17 changes: 13 additions & 4 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,23 @@ SYMFONY_MAILER_PASSWORD=
# Used in: config\common\params.php to build the oauth2 Clients array of Identity Providers (idP's) e.g Google, Facebook, Github
# Note: The config\web\di\auth.php does NOT use the yiisoft/yii-auth-client Collection function to build the 'Clients' array above but uses the SettingRepository functions for this purpose.

GOOGLE_PEOPLE_API_V1_CLIENT_ID=test_google_client_id_from_dot_env
GOOGLE_PEOPLE_API_V1_CLIENT_SECRET=test_google_client_secret_from_dot_env
GOOGLE_PEOPLE_API_VI_RETURN_URL=test_google_client_secret_from_dot_env
GOOGLE_API_CLIENT_ID=test_google_client_id_from_dot_env
GOOGLE_API_CLIENT_SECRET=test_google_client_secret_from_dot_env
GOOGLE_API_CLIENT_RETURN_URL=test_google_client_secret_from_dot_env

FACEBOOK_API_CLIENT_ID=test_facebook_client_id_from_dot_env
FACEBOOK_API_CLIENT_SECRET=test_facebook_client_secret_from_dot_env
FACEBOO_API_CLIENT_RETURN_URL=test_facebook_client_return_url_from_dot_env

GITHUB_API_CLIENT_ID=test_github_client_id_from_dot_env
GITHUB_API_CLIENT_SECRET=github_client_secret_from_dot_env
GITHUB_API_CLIENT_RETURN_URL=http://my_website/callbackGithub
GITHUB_API_CLIENT_RETURN_URL=test_github_client_return_url_from_dot_env

LINKEDIN_API_CLIENT_ID=test_linkedin_client_id_from_dot_env
LINKEDIN_API_CLIENT_SECRET=test_linkedin_client_secret_from_dot_env
LINKEDIN_API_CLIENT_RETURN_URL=test_linkedin_client_return_url_from_dot_env

MICROSOFTONLINE_API_CLIENT_ID=test_microsoftonline_client_id_from_dot_env
MICROSOFTONLINE_API_CLIENT_SECRET=test_microsoftonline_client_secret_from_dot_env
MICROSOFTONLINE_API_CLIENT_RETURN_URL=test_microsoftonline_client_return_url_from_dot_env
MICROSOFTONLINE_API_CLIENT_TENANT=test_microsoftonline_client_tenant_from_dot_env
Loading

0 comments on commit 8ab7010

Please sign in to comment.