Dialogflow 中将 "Now" 解释为 @Sys.Time 的问题

Problem with the interpretation of "Now" as @Sys.Time in Dialogflow

目前我正在使用 Dialogflow 创建一个用于 Skype 的聊天机器人,主要问题是当我在 Skype 消息中使用命令“Now”时,它使用了我当前的时间 +1 小时,但是当我从 IOS 应用程序中询问时间 "Now" 时,它使用当前正确的时区,有人从 "where" 确切地知道 dialogflow 将当前时区用于单词“Now" 因为从我的 app-IOS 因为从 IOS_Application 它得到一个值(正确的时区值)并且从 skype 它得到另一个(时区+ 1小时值)

原始交互日志(Dialogflow - Skype):

{
  "queryText": "what time is now?",
  "parameters": {
    "time": "StiDate [Thu Oct 18 12:38:16 CDT 2018]"
  },
  "fulfillmentText": "the time is 12:38:16",
  "fulfillmentMessages": [
    {
      "text": {
        "text": [
          "[{\"type\":0,\"speech\":\"the time is 12:38:16\"}]"
        ]
      }
    }
  ],
  "intent": {
    "id": "37524c80-a15a-4c04-aa9b-38986ff38993",
    "displayName": "A_Test_EventTime"
  },
  "languageCode": "en",
  "sentimentAnalysisResult": {},
  "id": "93ce9408-4b73-4f18-9ae0-b947a906afc8",
  "sessionId": "6b69769b-1ce7-4359-9018-c88d017485bf",
  "timestamp": "2018-10-18T17:38:16.164Z",
  "source": "agent"
}

原始交互日志(Dialogflow - AppIOS):

{
  "queryText": "What time is now?",
  "parameters": {
    "time": "StiDate [Thu Oct 18 11:38:00 CST 2018]"
  },
  "fulfillmentText": "the time is 11:38:00",
  "fulfillmentMessages": [
    {
      "text": {
        "text": [
          "[{\"type\":0,\"speech\":\"the time is 11:38:00\"}]"
        ]
      }
    }
  ],
  "outputContexts": [
    {
      "name": "fa75fc39-7c68-47ac-bea5-12394f425855",
      "lifespanCount": 4,
      "parameters": {
        "time.original": "now?",
        "time": "StiDate [Thu Oct 18 11:38:00 CST 2018]"
      }
    }
  ],
  "intent": {
    "id": "37524c80-a15a-4c04-aa9b-38986ff38993",
    "displayName": "A_Test_EventTime"
  },
  "languageCode": "en",
  "sentimentAnalysisResult": {},
  "id": "58ade82b-c842-44b6-b0a2-d6cced4d6648",
  "sessionId": "dfe0efda53d11aa3d8d43e92a726f9e4",
  "timestamp": "2018-10-18T17:38:00.695Z",
  "source": "agent"
}

Dialogflow 代理有默认时区。您可以在控制台的 Dialogflow 代理设置中更改此时区:https://dialogflow.com/docs/agents/create-manage#general