Represents a thumbnail image on a Video.
Get fields on a VideoThumbnail.
GET v21.0/...?fields={fieldname_of_type_VideoThumbnail} 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(
'...?fields={fieldname_of_type_VideoThumbnail}',
'{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(
"...?fields={fieldname_of_type_VideoThumbnail}",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"...?fields={fieldname_of_type_VideoThumbnail}",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"...?fields={fieldname_of_type_VideoThumbnail}"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
Field | Description |
---|---|
id numeric string | The ID of the thumbnail |
height unsigned int32 | The height of the thumbnail |
is_preferred bool | Whether this is the preferred thumbnail for the video |
name string | The name of the thumbnail |
scale float | The scale of the thumbnail |
uri string | The URI of the thumbnail |
width unsigned int32 | The width of the thumbnail |
thumbnails
edge from the following paths: Refer to the /{video_id}/thumbnails
edge reference for complete usage details.
Parameter | Description |
---|---|
is_preferred boolean | Default value: false Set to |
source image | The source for the thumbnail, an image file Required |
success
: bool, Error | Description |
---|---|
100 | Invalid parameter |
200 | Permissions error |