-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update VK, OK OAuth 2.0 providers, added mail.ru OAuth 2.0 provider (#…
…813)
- Loading branch information
1 parent
de862f6
commit 066a5ec
Showing
4 changed files
with
97 additions
and
2 deletions.
There are no files selected for viewing
41 changes: 41 additions & 0 deletions
41
...ava/org/forgerock/openam/authentication/modules/oauth2/profile/MailRuProfileProvider.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* The contents of this file are subject to the terms of the Common Development and | ||
* Distribution License (the License). You may not use this file except in compliance with the | ||
* License. | ||
* | ||
* You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the | ||
* specific language governing permission and limitations under the License. | ||
* | ||
* When distributing Covered Software, include this CDDL Header Notice in each file and include | ||
* the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL | ||
* Header, with the fields enclosed by brackets [] replaced by your own identifying | ||
* information: "Portions copyright [year] [name of copyright owner]". | ||
* | ||
* Copyright 2024 3A Systems LLC. | ||
*/ | ||
|
||
package org.forgerock.openam.authentication.modules.oauth2.profile; | ||
|
||
import org.forgerock.openam.authentication.modules.oauth2.HttpRequestContent; | ||
import org.forgerock.openam.authentication.modules.oauth2.OAuthConf; | ||
|
||
import javax.security.auth.login.LoginException; | ||
import java.util.HashMap; | ||
import java.util.Map; | ||
|
||
public class MailRuProfileProvider implements ProfileProvider { | ||
|
||
private static final ProfileProvider INSTANCE = new MailRuProfileProvider(); | ||
|
||
public static ProfileProvider getInstance() { | ||
return INSTANCE; | ||
} | ||
@Override | ||
public String getProfile(OAuthConf config, String token) throws LoginException { | ||
Map<String, String> profileServiceGetParameters = new HashMap<>(); | ||
profileServiceGetParameters.put("access_token", token); | ||
profileServiceGetParameters.putAll(config.getProfileServiceGetParameters()); | ||
return HttpRequestContent.getInstance().getContentUsingGET(config.getProfileServiceUrl(), null, | ||
profileServiceGetParameters); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters