使用android手机无法提交团队自适应卡

时间:2019-06-24 02:47:09

标签: microsoft-teams

这是我的代码

{
          "@type": "ActionCard",
          "name": "拒絕",
          "inputs": [
            {
              "@type": "TextInput",
              "id": "拒絶理由",
              "isMultiline": true,
              "title": "Reason (optional)"
            }
          ],
          "actions": [
            {
              "@type": "HttpPOST",
              "name": "Submit",
              "target": "https://prod-31.southeastasia.logic.azure.com:443/XXXXXX",
              "headers": [
                {
                  "name": "content-type",
                  "value": "application/json"
                },
                {
                  "name": "authorization",
                  "value": ""
                }
              ],
              "bodyContentType": "application/json",
              "body": "{\"approved\": 3, \"comment\":\"{{ApproveComment.value}}\",\"id\": \"@{body('Create_item')?['ID']}\"}"
            }
          ]
        }

win10或win7桌面可以使用团队批准和提交

IOS电话可以使用团队批准和提交

ANDROID手机可以使用批准但不能提交

{
          "@type": "ActionCard",
          "name": "拒絕",
          "inputs": [
            {
              "@type": "TextInput",
              "id": "拒絶理由",
              "isMultiline": true,
              "title": "Reason (optional)"
            }
          ],
          "actions": [
            {
              "@type": "HttpPOST",
              "name": "Submit",
              "target": "https://prod-31.southeastasia.logic.azure.com:443/XXXXXX",
              "headers": [
                {
                  "name": "content-type",
                  "value": "application/json"
                },
                {
                  "name": "authorization",
                  "value": ""
                }
              ],
              "bodyContentType": "application/json",
              "body": "{\"approved\": 3, \"comment\":\"{{ApproveComment.value}}\",\"id\": \"@{body('Create_item')?['ID']}\"}"
            }
          ]
        }

0 个答案:

没有答案