For advanced use cases where Amplify does not provide the functionality you're looking for, you can retrieve the escape hatch to access the underlying SDK. The escape hatch provides access to the underlying `AWSMobileClient` instance. ```java AWSMobileClient mobileClient = (AWSMobileClient) Amplify.Auth.getPlugin("awsCognitoAuthPlugin").getEscapeHatch(); ``` ```kotlin val cognitoAuthPlugin = Amplify.Auth.getPlugin("awsCognitoAuthPlugin") val mobileClient = cognitoAuthPlugin.escapeHatch as AWSMobileClient ``` ```kotlin val cognitoAuthPlugin = Amplify.Auth.getPlugin("awsCognitoAuthPlugin") val mobileClient = cognitoAuthPlugin.escapeHatch as AWSMobileClient ``` ```java AWSMobileClient mobileClient = (AWSMobileClient) RxAmplify.Auth.getPlugin("awsCognitoAuthPlugin").getEscapeHatch(); ``` You can use the escape hatch to `federatedSignIn` with a valid token from other social providers. Find more details [here](https://docs.amplify.aws/sdk/auth/federated-identities/q/platform/android) ```java mobileClient.federatedSignIn(IdentityProvider.FACEBOOK.toString(), "", new Callback() { @Override public void onResult(final UserStateDetails userStateDetails) { //Handle the result } @Override public void onError(Exception e) { Log.e(TAG, "sign-in error", e); } }); ```