إصدار ‏‎Graph API‎‏

Canvas Text

قراءة

Text element of the canvas

Example

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

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

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

المعلمات

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

الحقول

الحقلالوصف
id
numeric string

The id of the element

background_color
string

The color of the background for 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

font_family
string

The font family

font_size
numeric string

The size of the font for the text

line_height
numeric string

The line height of the text

name
string

The name of the element

rich_text

The text content of the element

text_alignment
enum

The alignment of the text

text_color
string

The color of the text

top_padding
numeric string

The padding above the element

‎Error Codes‎

خطأالوصف
368The action attempted has been deemed abusive or is otherwise disallowed
100Invalid parameter

إنشاء

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

جارٍ التحديث

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

جارٍ الحذف

‎You can delete a CanvasText by making a DELETE request to /{canvas_text_id}.‎

المعلمات

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

‎Return Type‎

Struct {
success: bool,
}

‎Error Codes‎

خطأالوصف
210User not visible