Rest 在Microsoft Flow中获取用户配置文件(V2)-如何使用选择查询

Rest 在Microsoft Flow中获取用户配置文件(V2)-如何使用选择查询,rest,odata,azure-logic-apps,power-automate,office365connectors,Rest,Odata,Azure Logic Apps,Power Automate,Office365connectors,在Microsoft Flow中,我试图检索用户配置文件中的自定义字段。我正在使用“获取用户配置文件(V2)”操作,我想在查询字段中指定自定义字段。 无论我如何构造查询,操作都会返回以下错误: { "error": { "code": "BadRequest", "message": "Query option '$select' was specified more than once, but it must be specified at most once.",

在Microsoft Flow中,我试图检索用户配置文件中的自定义字段。我正在使用“获取用户配置文件(V2)”操作,我想在查询字段中指定自定义字段。 无论我如何构造查询,操作都会返回以下错误:

{
  "error": {
    "code": "BadRequest",
    "message": "Query option '$select' was specified more than once, but it must be specified at most once.",
    "innerError": {
      "request-id": "785b1a00-e298-494f-95ad-af979856cbf4",
      "date": "2018-01-05T13:41:46"
    }
  }
}
我应该使用什么语法来获取,例如字段“TestField”

我猜查询字段中的值被添加到操作创建的OData查询中

非常感谢您的帮助

亲切问候,,
Peter Rundqvist

我在尝试任何字段名组合时也得到了相同的响应。它仍在“预览”中,因此可能是它损坏的原因。将$select字段留空将起作用,或者只使用V1获取所有字段,并在下一个操作中选择所需的字段。