List all businesses that have access to your business's assets.
GET /v21.0/{business-id}/agencies 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(
'/{business-id}/agencies',
'{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(
"/{business-id}/agencies",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{business-id}/agencies",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{business-id}/agencies"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
การอ่านจากจุดเชื่อมโยงนี้จะให้ผลลัพธ์ที่อยู่ในรูปแบบ JSON:
{ "
data
": [], "paging
": {}, "summary
": {} }
data
จะมีการเพิ่มช่องต่อไปนี้ลงในแต่ละโหนดที่ส่งกลับ:
ช่อง | คำอธิบาย |
---|---|
adaccount_permissions list<AdAccountPermission> | Adaccount_permissions |
application_permissions list<AppPermission> | Application_permissions |
page_permissions list<PagePermission> | Page_permissions |
productcatalog_permissions list<ProductCatalogPermission> | Productcatalog_permissions |
shared_ca_count int32 | Shared_ca_count |
paging
summary
ข้อมูลโดยรวมเกี่ยวกับจุดเชื่อมโยง เช่น จำนวนนับ ระบุช่องกรอกข้อมูลเพื่อดึงข้อมูลในพารามิเตอร์สรุป (เช่น summary=total_count
)
ช่อง | คำอธิบาย |
---|---|
total_count unsigned int32 | Total number of businesses. |
ข้อผิดพลาด | คำอธิบาย |
---|---|
190 | Invalid OAuth 2.0 Access Token |
/{business_id}/agencies
.พารามิเตอร์ | คำอธิบาย |
---|---|
business numeric string or integer | The agency's business. ต้องระบุ |
success
: bool, ข้อผิดพลาด | คำอธิบาย |
---|---|
100 | Invalid parameter |