0

我正在尝试创建一个监控作业来监控 Salesforce 中的登录失败。但是,当我尝试查询标准对象 LoginHistory 时,Salesforce 似乎不允许这样做。当我开发一个人才工作时,我收到一条消息说"InvalidSObjectFault"。当我开发批处理 apex 数据加载器作业时,我收到一条消息说"sObject type LoginHistory is not supported".

有人可以帮忙吗?

4

1 回答 1

1

I executed the following query with success in Execute Anonymous :

for(LoginHistory log : [select Id, UserId, LoginTime, LoginType, Browser, Platform, Status from LoginHistory limit 5])
{
System.debug('>>>'+log);
}

Also check if you have the right permissions, here is the API object :

"Only users with Manager Users permissions can access this object."

于 2013-08-15T05:31:24.477 回答