时间:2019-05-07 来源:小程序工厂
时间紧急,没有时间了,只能想了个比较笨的办法,抓取异常,如果大家有更好的办法也可回贴
except Exception as e:
output = str(e)
print output
if (output.find("Username and password not accepted")!=-1):
print "False"
return False;
if(output.find("Application-specific password required")!=-1):
print "True"
return True;