그래프 API 버전

Canvas Footer

읽기

A footer of the canvas

Example

use FacebookAds\Api;
use FacebookAds\Http\RequestInterface;

$params = array(
  'fields' => array(
    'child_elements',
    'id',
    'name',
  ),
);

$data = Api::instance()->call(
  '/' . <CANVAS_FOOTER_ID>,
  RequestInterface::METHOD_GET,
  $params)->getContent();
curl -G \
  --data-urlencode 'fields=[ 
    "child_elements", 
    "id", 
    "name" 
  ]' \
  -d 'access_token=<ACCESS_TOKEN>' \
  https://graph.facebook.com/v2.11/<CANVAS_FOOTER_ID>

매개변수

이 엔드포인트는 매개변수가 없습니다.

필드

필드설명
id
numeric string

The id of the element

background_color
string

Background color of the button

bottom_padding
numeric string

The padding below the element

child_elements
list<CanvasButton>

The child elements inside a footer

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

top_padding
numeric string

The padding above the element

오류 코드

오류설명
368The action attempted has been deemed abusive or is otherwise disallowed

만들기

이 엔드포인트에서 수행할 수 없는 작업입니다.

업데이트 중

이 엔드포인트에서 수행할 수 없는 작업입니다.

삭제 중

/{canvas_footer_id}에 DELETE 요청을 만들어 a CanvasFooter을(를) 삭제할 수 있습니다.

매개변수

이 엔드포인트는 매개변수가 없습니다.

반환 유형

Struct {
success: bool,
}

오류 코드

오류설명
100Invalid parameter