'Signin error about twitter and unity in Firebase

Already found the reason:
You currently have Essential access which includes access to Twitter API v2 endpoints only.
If you need access to this endpoint, you’ll need to apply for Elevated access via the Developer Portal

Hi I have problem about Twitter login in Unity.
I can use email google and facebook login in firebase project.
I can get each twitter account's Access Token and Secret even username via twitter unity sdk.
However when I try to login via twitter, it has One or more errors occurred problem.
I tried to use Reauthenticate but it doesn't work.
Does anyone who knows how to solve this problem? thx

[Error] : SignInWithCredentialAsync fatal. an error: System.AggregateException: One or more errors occurred. ---> System.AggregateException: One or more errors occurred. ---> Firebase.FirebaseException: The supplied auth credential is malformed or has expired.
--- End of inner exception stack trace ---
--- End of inner exception stack trace ---
---> (Inner Exception #0) System.AggregateException: One or more errors occurred. ---> Firebase.FirebaseException: The supplied auth credential is malformed or has expired.
--- End of inner exception stack trace ---
---> (Inner Exception #0) Firebase.FirebaseException: The supplied auth credential is malformed or has expired.<---

UnityEngine.Debug:LogError (object)
(System.Threading.Tasks.Task`1<Firebase.Auth.FirebaseUser>)
System.Threading._ThreadPoolWaitCallback:PerformWaitCallback ()

public void LoginWithTwitter()
    {
        FirebaseAuth auth = FirebaseAuth.DefaultInstance;
        Credential _twitterCredential = TwitterAuthProvider.GetCredential(_twitterAccessToken, _twitterSecret);

        auth.SignInWithCredentialAsync(_twitterCredential).ContinueWith(task => 
        {
            if (task.IsCanceled) 
            {
                Debug.LogError("[Info] : SignInWithCredentialAsync canceled.");
                return;
            }
            if (task.IsFaulted) 
            {
                Debug.LogError("[Error] : SignInWithCredentialAsync fatal. an error: " + task.Exception);
                return;
            }
            FirebaseUser authUser = task.Result;
        });
    }


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source