图谱 API 版

    Live Video Polls

    Represents a collection of VideoPolls on a LiveVideo.

    读取

    Gets a list of VideoPolls on a LiveVideo.

    例子

    Graph API Explorer
    GET /v21.0/{live-video-id}/polls HTTP/1.1
    Host: graph.facebook.com
    /* PHP SDK v5.0.0 */
    /* make the API call */
    try {
      // Returns a `Facebook\FacebookResponse` object
      $response = $fb->get(
        '/{live-video-id}/polls',
        '{access-token}'
      );
    } catch(Facebook\Exceptions\FacebookResponseException $e) {
      echo 'Graph returned an error: ' . $e->getMessage();
      exit;
    } catch(Facebook\Exceptions\FacebookSDKException $e) {
      echo 'Facebook SDK returned an error: ' . $e->getMessage();
      exit;
    }
    $graphNode = $response->getGraphNode();
    /* handle the result */
    /* make the API call */
    FB.api(
        "/{live-video-id}/polls",
        function (response) {
          if (response && !response.error) {
            /* handle the result */
          }
        }
    );
    /* make the API call */
    new GraphRequest(
        AccessToken.getCurrentAccessToken(),
        "/{live-video-id}/polls",
        null,
        HttpMethod.GET,
        new GraphRequest.Callback() {
            public void onCompleted(GraphResponse response) {
                /* handle the result */
            }
        }
    ).executeAsync();
    /* make the API call */
    FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
                                   initWithGraphPath:@"/{live-video-id}/polls"
                                          parameters:params
                                          HTTPMethod:@"GET"];
    [request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
                                          id result,
                                          NSError *error) {
        // Handle the result
    }];
    如果你希望详细了解如何使用图谱 API,请阅读我们的图谱 API 指南

    参数

    这个端点不包含任何参数。

    字段

    从这条连线读取将返回一个 JSON 格式的结果:

    { "data": [], "paging": {} }

    data

    VideoPoll 节点列表。

    paging

    详细了解分页功能,请见图谱 API 指南

    错误代码

    错误描述
    100Invalid parameter

    创建

    你可以通过下列路径向 polls 连线发出 POST 请求:
    发布到这个连线会创建 a VideoPoll

    参数

    参数描述
    correct_option
    int64

    Number of the correct option (in order, starting from 1)

    options
    array<string>

    Text options for users to select in order

    必填
    question
    string

    Question text

    必填
    show_results
    boolean

    True to show the results after voting, otherwise false

    返回类型

    这个端点支持先写后读,并会读取返回类型中 id 代表的节点。
    Struct {
    id: numeric string,
    option_ids: List [
    numeric string
    ],
    }

    错误代码

    错误描述
    100Invalid parameter

    更新

    你无法在此端点执行该操作。

    删除

    你无法在此端点执行该操作。