Retrieve a list of Instant Articles for a page.
For Pages you own or for which you can perform the MODERATE
task, you will need:
pages_manage_instant_articles
permissionFor Page you do not own or which you can not perform the MODERATE
task, you will need:
Name | Description |
---|---|
Page Public Content Access | This feature permission may be required. |
GET /v9.0/{page-id}/instant_articles 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(
'/{page-id}/instant_articles',
'{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(
"/{page-id}/instant_articles",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{page-id}/instant_articles",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
// For more complex open graph stories, use `FBSDKShareAPI`
// with `FBSDKShareOpenGraphContent`
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{page-id}/instant_articles"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
Parameter | Description |
---|---|
development_mode boolean | Default value: false Whether to show development articles or production articles. |
Reading from this edge will return a JSON formatted result:
{ "
data
": [], "paging
": {}, "summary
": {} }
data
paging
summary
Aggregated information about the edge, such as counts. Specify the fields to fetch in the summary param (like summary=total_count
).
Field | Description |
---|---|
total_count unsigned int32 | The total number of instant articles associated with this Page. |
Error | Description |
---|---|
200 | Permissions error |
3000 | Reading insights of a Page, business, app, domain or event source group not owned by the querying user or application |
100 | Invalid parameter |
instant_articles
edge from the following paths: Parameter | Description |
---|---|
development_mode boolean | A flag indicating whether the article will be placed in development mode |
html_source string | The HTML markup to use when generating the Instant Article RequiredSupports Emoji |
published boolean | A flag indicating whether the article will be published immediately |
take_live boolean | A flag indicating whether the article will be published immediately (deprecated) |
id
in the return type.id
: numeric string, Error | Description |
---|---|
200 | Permissions error |
100 | Invalid parameter |