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 ) ;
}