我正在使用以下代码从Gmail中读取内容:
using (Pop3Client client = new Pop3Client())
{
// Connect to the server
client.Connect("pop.gmail.com", 995, true);
client.Authenticate("recent:Ser778@gmail.com", "password1", OpenPop.Pop3.AuthenticationMethod.UsernameAndPassword);
请注意,我可以使用凭据登录(请注意,为了安全起见,我已经对用户名,密码进行了调整)。
我不断得到:
我不断收到消息:
OpenPop.Pop3.Exceptions.InvalidLoginException:'服务器未接受用户凭据'
请注意,我已经在Gmail设置中启用了POP。Gmail显示:状态:所有邮件均已启用POP
翻阅古今
相关分类