添加活动时,我是否应该在“对象”键中指定对象 ID。流如何使用此密钥,该字段是否需要唯一性?对我来说,这并不重要,因为使用 foreign_id 我可以在丰富过程中从演员动词、宾语、目标等中取回所有信息。
如果我只指定“$objectType”而不是“$objectType:$objectId”,这会导致问题吗?
$data = [
'actor' => '1',
'verb' => "$verb",
// This
'object' => "$objectType",
// Or This
'object' => "$objectType:$objectId",
'target' => "$targetObjectType:$targetObjectId",
'time' => "$time",
'foreign_id' => "$foreignId",
// Custom field
'object_type' => $objectType
];