Canvas Video
A video inside canvas
GET /v2.12/{canvas-video-id} 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(
'/{canvas-video-id}',
'{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(
"/{canvas-video-id}",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{canvas-video-id}",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
// For more complex open graph stories, use `FBSDKShareAPI`
// with `FBSDKShareOpenGraphContent`
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{canvas-video-id}"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
Field | Description |
---|---|
id numeric string | The id of the element |
bottom_padding numeric string | The padding below the element |
element_group_key string | The element group key to bundle multiple elements in editing |
element_type enum | The type of the element |
name string | The name of the element |
style enum | The presentation style of the video |
top_padding numeric string | The padding above the element |
video | The facebook video node |
Error | Description |
---|---|
100 | Invalid parameter |
/{canvas_video_id}
.Name | Description |
---|---|
bottom_padding float | The padding below the video |
name string | Name of the video element |
style enum {FIT_TO_WIDTH, FIT_TO_HEIGHT} | The presentation style of the video |
top_padding float | The padding above the video |
video_id id | ID of Facebook video used in the video element |
success
: bool, Error | Description |
---|---|
200 | Permissions error |
100 | Invalid parameter |
210 | User not visible |
/{canvas_video_id}
.success
: bool,