Raygun 拥有丰富的用户跟踪功能。但是,他们要求我们提供以下数据:
// V2
rg4js('setUser', {
identifier: 'user_email_address@localhost.local',
isAnonymous: false,
email: 'emailaddress@localhost.local',
firstName: 'Foo',
fullName: 'Foo Bar',
uuid: 'BAE62917-ACE8-ab3D-9287-B6A33B8E8C55'
});
// V1
Raygun.setUser('user_email_address@localhost.local',
false,
'user_email_address@localhost.local',
'Foo',
'Foo Bar',
'BAE62917-ACE8-ab3D-9287-B6A33B8E8C55');
如果我们需要提供用户数据,那么这个丰富的用户如何跟踪?是我的理解错了吗?
如果我们有许多用户在使用该应用程序,那会怎样呢?有没有人试过这个功能?