[null,null,["最后更新时间 (UTC):2025-08-31。"],[[["\u003cp\u003eThe Action feed specification uses a protobuffer format but recommends using JSON for uploading.\u003c/p\u003e\n"],["\u003cp\u003eAction feeds consist of multiple \u003ccode\u003eActionDetail\u003c/code\u003e messages within an \u003ccode\u003eActionFeed\u003c/code\u003e message.\u003c/p\u003e\n"],["\u003cp\u003eEach \u003ccode\u003eActionDetail\u003c/code\u003e includes an entity ID, link ID, URL, and a list of actions.\u003c/p\u003e\n"],["\u003cp\u003eRefer to the provided JSON sample feeds for guidance on formatting and content.\u003c/p\u003e\n"]]],["The `ActionFeed` is defined using a protobuffer format but should be uploaded in JSON. It contains a repeated list of `ActionDetail` objects. Each `ActionDetail` includes an `entity_id`, `link_id`, a deep link `url`, and a list of `Action` objects. The JSON format is recommended, with sample feeds available for reference.\n"],null,["# Action Feed\n\nDefinitions\n-----------\n\n| **Note:** The Action feed spec is defined in protobuffer format below, however we recommend uploading the feeds in JSON format. You can reference our [JSON sample feeds](#samples) for more information.\n\n### ActionFeed Definition\n\n```protobuf\nmessage ActionFeed {\n repeated ActionDetail data = 1;\n}\n```\n\n### ActionDetail Definition\n\n```protobuf\nmessage ActionDetail {\n string entity_id = 2;\n string link_id = 3;\n\n // Deep link for action detail\n string url = 4;\n repeated Action actions = 1;\n}\n```"]]