Search in sources :

Example 1 with GoogleSignInOptions

use of com.google.android.gms.auth.api.signin.GoogleSignInOptions in project FirebaseUI-Android by firebase.

the class GoogleProvider method getSignInOptions.

private GoogleSignInOptions getSignInOptions(@Nullable String email) {
    String clientId = mActivity.getString(R.string.default_web_client_id);
    GoogleSignInOptions.Builder builder = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN).requestEmail().requestIdToken(clientId);
    if (mActivity.getResources().getIdentifier("google_permissions", "array", mActivity.getPackageName()) != 0) {
        Log.w(TAG, "DEVELOPER WARNING: You have defined R.array.google_permissions but that is" + " no longer respected as of FirebaseUI 1.0.0. Please see README for IDP scope" + " configuration instructions.");
    }
    // Add additional scopes
    for (String scopeString : mIdpConfig.getScopes()) {
        builder.requestScopes(new Scope(scopeString));
    }
    if (!TextUtils.isEmpty(email)) {
        builder.setAccountName(email);
    }
    return builder.build();
}
Also used : Scope(com.google.android.gms.common.api.Scope) GoogleSignInOptions(com.google.android.gms.auth.api.signin.GoogleSignInOptions)

Example 2 with GoogleSignInOptions

use of com.google.android.gms.auth.api.signin.GoogleSignInOptions in project google-services by googlesamples.

the class IdTokenActivity method onCreate.

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    // Views
    mIdTokenTextView = (TextView) findViewById(R.id.detail);
    mRefreshButton = (Button) findViewById(R.id.button_optional_action);
    mRefreshButton.setText(R.string.refresh_token);
    // Button click listeners
    findViewById(R.id.sign_in_button).setOnClickListener(this);
    findViewById(R.id.sign_out_button).setOnClickListener(this);
    findViewById(R.id.disconnect_button).setOnClickListener(this);
    mRefreshButton.setOnClickListener(this);
    // For sample only: make sure there is a valid server client ID.
    validateServerClientID();
    // [START configure_signin]
    // Request only the user's ID token, which can be used to identify the
    // user securely to your backend. This will contain the user's basic
    // profile (name, profile picture URL, etc) so you should not need to
    // make an additional call to personalize your application.
    GoogleSignInOptions gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN).requestIdToken(getString(R.string.server_client_id)).requestEmail().build();
    // [END configure_signin]
    // Build GoogleAPIClient with the Google Sign-In API and the above options.
    mGoogleApiClient = new GoogleApiClient.Builder(this).enableAutoManage(this, /* FragmentActivity */
    this).addApi(Auth.GOOGLE_SIGN_IN_API, gso).build();
}
Also used : GoogleSignInOptions(com.google.android.gms.auth.api.signin.GoogleSignInOptions)

Example 3 with GoogleSignInOptions

use of com.google.android.gms.auth.api.signin.GoogleSignInOptions in project google-services by googlesamples.

the class SignInActivity method onCreate.

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    // Views
    mStatusTextView = (TextView) findViewById(R.id.status);
    // Button listeners
    findViewById(R.id.sign_in_button).setOnClickListener(this);
    findViewById(R.id.sign_out_button).setOnClickListener(this);
    findViewById(R.id.disconnect_button).setOnClickListener(this);
    // [START configure_signin]
    // Configure sign-in to request the user's ID, email address, and basic
    // profile. ID and basic profile are included in DEFAULT_SIGN_IN.
    GoogleSignInOptions gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN).requestEmail().build();
    // [END configure_signin]
    // [START build_client]
    // Build a GoogleApiClient with access to the Google Sign-In API and the
    // options specified by gso.
    mGoogleApiClient = new GoogleApiClient.Builder(this).enableAutoManage(this, /* FragmentActivity */
    this).addApi(Auth.GOOGLE_SIGN_IN_API, gso).build();
    // [END build_client]
    // [START customize_button]
    // Set the dimensions of the sign-in button.
    SignInButton signInButton = (SignInButton) findViewById(R.id.sign_in_button);
    signInButton.setSize(SignInButton.SIZE_STANDARD);
// [END customize_button]
}
Also used : SignInButton(com.google.android.gms.common.SignInButton) GoogleSignInOptions(com.google.android.gms.auth.api.signin.GoogleSignInOptions)

Example 4 with GoogleSignInOptions

use of com.google.android.gms.auth.api.signin.GoogleSignInOptions in project google-services by googlesamples.

the class SignInActivityWithDrive method onCreate.

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    // Views
    mStatusTextView = (TextView) findViewById(R.id.status);
    // Button listeners
    findViewById(R.id.sign_in_button).setOnClickListener(this);
    findViewById(R.id.sign_out_button).setOnClickListener(this);
    findViewById(R.id.disconnect_button).setOnClickListener(this);
    // [START configure_signin]
    // Configure sign-in to request the user's ID, email address, and basic
    // profile. ID and basic profile are included in DEFAULT_SIGN_IN.
    GoogleSignInOptions gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN).requestScopes(new Scope(Scopes.DRIVE_APPFOLDER)).requestEmail().build();
    // [END configure_signin]
    // [START build_client]
    // Build a GoogleApiClient with access to the Google Sign-In API and the
    // options specified by gso.
    mGoogleApiClient = new GoogleApiClient.Builder(this).enableAutoManage(this, /* FragmentActivity */
    this).addApi(Auth.GOOGLE_SIGN_IN_API, gso).build();
    // [END build_client]
    // [START customize_button]
    // Customize sign-in button. The sign-in button can be displayed in
    // multiple sizes and color schemes. It can also be contextually
    // rendered based on the requested scopes. For example. a red button may
    // be displayed when Google+ scopes are requested, but a white button
    // may be displayed when only basic profile is requested. Try adding the
    // Scopes.PLUS_LOGIN scope to the GoogleSignInOptions to see the
    // difference.
    SignInButton signInButton = (SignInButton) findViewById(R.id.sign_in_button);
    signInButton.setSize(SignInButton.SIZE_STANDARD);
    signInButton.setScopes(gso.getScopeArray());
// [END customize_button]
}
Also used : SignInButton(com.google.android.gms.common.SignInButton) Scope(com.google.android.gms.common.api.Scope) GoogleSignInOptions(com.google.android.gms.auth.api.signin.GoogleSignInOptions)

Example 5 with GoogleSignInOptions

use of com.google.android.gms.auth.api.signin.GoogleSignInOptions in project easy by MehdiBenmesa.

the class IdTokenActivity method onCreate.

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activitymain);
    // Views
    mIdTokenTextView = (TextView) findViewById(R.id.detail);
    mRefreshButton = (Button) findViewById(R.id.button_optional_action);
    mRefreshButton.setText(R.string.refresh_token);
    // Button click listeners
    findViewById(R.id.sign_in_button).setOnClickListener(this);
    findViewById(R.id.sign_out_button).setOnClickListener(this);
    findViewById(R.id.disconnect_button).setOnClickListener(this);
    mRefreshButton.setOnClickListener(this);
    // For sample only: make sure there is a valid server client ID.
    validateServerClientID();
    // [START configure_signin]
    // Request only the user's ID token, which can be used to identify the
    // user securely to your backend. This will contain the user's basic
    // profile (name, profile picture URL, etc) so you should not need to
    // make an additional call to personalize your application.
    GoogleSignInOptions gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN).requestIdToken(getString(R.string.server_client_id)).requestEmail().build();
    // [END configure_signin]
    // Build GoogleAPIClient with the Google Sign-In API and the above options.
    mGoogleApiClient = new GoogleApiClient.Builder(this).enableAutoManage(this, /* FragmentActivity */
    this).addApi(Auth.GOOGLE_SIGN_IN_API, gso).build();
}
Also used : GoogleSignInOptions(com.google.android.gms.auth.api.signin.GoogleSignInOptions)

Aggregations

GoogleSignInOptions (com.google.android.gms.auth.api.signin.GoogleSignInOptions)16 Scope (com.google.android.gms.common.api.Scope)8 SignInButton (com.google.android.gms.common.SignInButton)6 GoogleApiClient (com.google.android.gms.common.api.GoogleApiClient)3 TextView (android.widget.TextView)1 FirebaseAuth (com.google.firebase.auth.FirebaseAuth)1 FirebaseUser (com.google.firebase.auth.FirebaseUser)1