# 数据导入FAQ

## 1、数据导入后原有新访用户应该如何标识？

方舟通过 `$first_visit_time` 来记录用户所使用的设备首次访问的时间。正常情况下，客户端SDK会通过一个标识来区分这个设备是否第一次访问，并且只会在发现设备第一次访问的情况的时机才会自动上报这个属性。

对于导入历史数据的情况，若历史用户数据中包含首次访问的时间，则可以通过设置用户的 `$first_visit_time` 字段来将用户的首次访问事件设置为历史上真实的时间。

以 Python SDK 为例：

```python
python_sdk_platform = "android"
alias_id = "zhangsan"
properties = {
           "$first_visit_time" : 1572676233813
        }
eguan.profile_set_once(alias_id, properties, python_sdk_platform, is_login=True)
```

{% hint style="info" %}
以上内容没有解答我的问题？[点击我进入方舟论坛去反馈](https://www.analysysdata.com/forum/index) 🚀
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://arkdocs.analysys.cn/integration/import/identify-new-users.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
