首页 > 解决方案 > 通过 mgp25 Instagram 非官方 API 发布故事的问题

问题描述

我正在使用 mgp25 非官方 Instagram API 将帖子和故事从我的应用程序发布到 Instagram。最近在贴纸上毫无疑问地发布了带有投票贴纸的故事。它发布了它的统计数据,但没有发布我在我的应用程序中添加的问题。我以前没有这个问题,也没有更改我的代码。API有问题吗?

下面是我的一段代码,用于指定要发送的故事:

"story_polls": [
    {
      "x": 0.5,
      "y": 0.14474431818181802,
      "z": 0,
      "width": 0.5,
      "height": 0.089488636363636,
      "rotation": 0,
      "is_pinned": 0,
      "is_hidden": 0,
      "is_sticker": 1,
      "is_fb_sticker": 0,
      "poll_sticker": {
        "id": "polling_sticker_vibrant",
        "poll_id": 17886842228150996,
        "question": "Question",
        "tallies": [
          {
            "text": "Answer 1",
            "font_size": 27.5,
            "count": 0
          },
          {
            "text": "Answer 2",
            "font_size": 27.5,
            "count": 0
          }
        ],
        "promotion_tallies": null,
        "viewer_can_vote": true,
        "is_shared_result": false,
        "finished": false
      }
    }
  ]

标签: phpapiinstagram-api

解决方案


推荐阅读