FifaSharp
1.0.0
string ? GetOneTimeCode ( )
{
Console . Write ( "Enter the 2fa code sent to your email: " ) ;
return Console . ReadLine ( ) ;
}
void CacheCookie ( string cookie )
{
File . WriteAllText ( "cookie_cache.txt" , cookies ) ;
}
var client = new FutClient ( ) ;
bool success = await client . TryLoginAsync ( "[email protected]" , "password" , GetOneTimeCode , true , CacheCookie ) ;
ログインは Cookie を使用してキャッシュされます。電子メールとパスワードを使用して一度ログインに成功すると、 GetLoginCookies
メソッドまたはTryLoginAsync
のオプションのonCacheCookies
パラメーターを使用してログイン Cookie を取得できます (上記の例を参照)。
Cookie をどこかにキャッシュしたら、パスワードを使用したり 2FA プロセスを経たりせずに再度ログインするには、キャッシュした Cookie をTryLoginAsync
に渡すだけです。
// just a simple example of how you can use the cached login
if ( File . Exists ( "cookie_cache.txt" )
{
string cachedCookie = File . ReadAllText ( "cookie_cache.txt" ) ;
await client . TryLoginAsync ( cachedCookies ) ;
}