إصدار ‏‎Graph 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
    }];
    إذا كنت تريد التعرف على كيفية استخدام واجهة Graph API، يرجى قراءة ‏دليل استخدام واجهة Graph API‏.

    المعلمات

    لا تحتوي نقطة النهاية هذه على أي معلمات.

    الحقول

    ستؤدي القراءة من عنصر الربط هذا إلى نتيجة بتنسيق JSON:

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

    data

    قائمة عُقد ‏‎VideoPoll‎‏.

    paging

    لمزيد من التفاصيل عن تقسيم الصفحات، يرجى الاطلاع على ‏دليل Graph API‏.

    ‎Error Codes‎

    خطأالوصف
    100Invalid parameter

    إنشاء

    ‎You can make a POST request to polls edge from the following paths:
    ‎When posting to this edge, a VideoPoll will be created.‎

    المعلمات

    معلمةالوصف
    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

    ‎Return Type‎

    ‎This endpoint supports ‎read-after-write‎ and will read the node represented by id in the return type.‎
    Struct {
    id: numeric string,
    option_ids: List [
    numeric string
    ],
    }

    ‎Error Codes‎

    خطأالوصف
    100Invalid parameter

    جارٍ التحديث

    لا يمكنك تنفيذ هذه العملية في نقطة النهاية هذه.

    جارٍ الحذف

    لا يمكنك تنفيذ هذه العملية في نقطة النهاية هذه.