AdAccountAdRulesLibrary
GET /v21.0/{ad-account-id}/adrules_library 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(
'/{ad-account-id}/adrules_library',
'{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(
"/{ad-account-id}/adrules_library",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{ad-account-id}/adrules_library",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{ad-account-id}/adrules_library"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
การอ่านจากจุดเชื่อมโยงนี้จะให้ผลลัพธ์ที่อยู่ในรูปแบบ JSON:
{ "
data
": [], "paging
": {} }
data
paging
ข้อผิดพลาด | คำอธิบาย |
---|---|
100 | Invalid parameter |
190 | Invalid OAuth 2.0 Access Token |
200 | Permissions error |
adrules_library
edge from the following paths: พารามิเตอร์ | คำอธิบาย |
---|---|
account_id numeric string | Ad Account ID. This is inferred from the path. |
evaluation_spec Object | Defines the evaluation spec upon which a rule will be executed ต้องระบุ |
execution_spec Object | Defines the execution spec upon which a rule will be executed ต้องระบุ |
name string | The friendly name of a rule, optional for inline rules ต้องระบุ |
schedule_spec Object | Specifies the schedule with which a rule will be evaluated |
status enum {ENABLED, DISABLED, DELETED, HAS_ISSUES} | The status of a rule |
id
in the return type.id
: numeric string, ข้อผิดพลาด | คำอธิบาย |
---|---|
200 | Permissions error |
100 | Invalid parameter |
2703 | Rules that turn off ads can't have cost conditions. You need to change the rule's conditions or action. |
190 | Invalid OAuth 2.0 Access Token |
368 | The action attempted has been deemed abusive or is otherwise disallowed |