mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-24 07:01:05 +00:00
parent
5ee4955841
commit
8e78172c92
3 changed files with 7 additions and 0 deletions
|
@ -159,6 +159,7 @@ public class EmailProvider {
|
|||
provider.oauth.askAccount = xml.getAttributeBooleanValue(null, "askAccount", false);
|
||||
provider.oauth.clientId = xml.getAttributeValue(null, "clientId");
|
||||
provider.oauth.clientSecret = xml.getAttributeValue(null, "clientSecret");
|
||||
provider.oauth.pcke = xml.getAttributeBooleanValue(null, "pcke", false);
|
||||
provider.oauth.scopes = xml.getAttributeValue(null, "scopes").split(",");
|
||||
provider.oauth.authorizationEndpoint = xml.getAttributeValue(null, "authorizationEndpoint");
|
||||
provider.oauth.tokenEndpoint = xml.getAttributeValue(null, "tokenEndpoint");
|
||||
|
@ -687,6 +688,7 @@ public class EmailProvider {
|
|||
boolean askAccount;
|
||||
String clientId;
|
||||
String clientSecret;
|
||||
boolean pcke;
|
||||
String[] scopes;
|
||||
String authorizationEndpoint;
|
||||
String tokenEndpoint;
|
||||
|
|
|
@ -55,6 +55,7 @@ import net.openid.appauth.AuthorizationService;
|
|||
import net.openid.appauth.AuthorizationServiceConfiguration;
|
||||
import net.openid.appauth.ClientAuthentication;
|
||||
import net.openid.appauth.ClientSecretPost;
|
||||
import net.openid.appauth.CodeVerifierUtil;
|
||||
import net.openid.appauth.NoClientAuthentication;
|
||||
import net.openid.appauth.ResponseTypeValues;
|
||||
import net.openid.appauth.TokenResponse;
|
||||
|
@ -282,6 +283,9 @@ public class FragmentOAuth extends FragmentBase {
|
|||
if (askAccount)
|
||||
authRequestBuilder.setLoginHint(etEmail.getText().toString().trim());
|
||||
|
||||
if (provider.oauth.pcke)
|
||||
authRequestBuilder.setCodeVerifier(CodeVerifierUtil.generateRandomCodeVerifier());
|
||||
|
||||
// For offline access
|
||||
if ("gmail".equals(provider.id))
|
||||
authRequestBuilder.setPrompt("consent");
|
||||
|
|
|
@ -102,6 +102,7 @@
|
|||
clientId="dj0yJmk9MUFMR2dpdnllTHdZJmQ9WVdrOWRraFJNVGwwTkcwbWNHbzlNQS0tJnM9Y29uc3VtZXJzZWNyZXQmc3Y9MCZ4PWFl"
|
||||
clientSecret="054ceb7cc001a322126dd51b3399785604543f83"
|
||||
enabled="false"
|
||||
pcke="true"
|
||||
redirectUri="https://oauth.faircode.eu/"
|
||||
scopes="mail-w"
|
||||
tokenEndpoint="https://api.login.yahoo.com/oauth2/get_token" />
|
||||
|
|
Loading…
Reference in a new issue