Get a list of apps subscribed to webhooks for the WABA.
GET /v21.0/{whats-app-business-account-id}/subscribed_apps 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(
'/{whats-app-business-account-id}/subscribed_apps',
'{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(
"/{whats-app-business-account-id}/subscribed_apps",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{whats-app-business-account-id}/subscribed_apps",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{whats-app-business-account-id}/subscribed_apps"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
ستؤدي القراءة من عنصر الربط هذا إلى نتيجة بتنسيق JSON:
{ "
data
": [], "paging
": {} }
data
paging
خطأ | الوصف |
---|---|
100 | Invalid parameter |
200 | Permissions error |
subscribed_apps
edge from the following paths: معلمة | الوصف |
---|---|
override_callback_uri URI | Required if overriding the callback URL.
|
verify_token string | Required if overriding the callback URL.
|
success
: bool, خطأ | الوصف |
---|---|
100 | Invalid parameter |
200 | Permissions error |
2200 | subscription validation failed |
2201 | received an invalid hub.challenge while validating endpoint |
/{whats_app_business_account_id}/subscribed_apps
.success
: bool, خطأ | الوصف |
---|---|
100 | Invalid parameter |
200 | Permissions error |