You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This code snippet should explain it:
require 'gmail'
username = ARGV[0]
password = ARGV[1]
gmail = Gmail.new(username, password)
puts "success!" if gmail.logged_in? == true
is there no other way to check? I've tried a few different methods, but I get IMAP errors and the script crashes instead of just giving me a "false" back.
The text was updated successfully, but these errors were encountered:
This code snippet should explain it:
require 'gmail'
username = ARGV[0]
password = ARGV[1]
gmail = Gmail.new(username, password)
puts "success!" if gmail.logged_in? == true
is there no other way to check? I've tried a few different methods, but I get IMAP errors and the script crashes instead of just giving me a "false" back.
The text was updated successfully, but these errors were encountered: