ShadowIGUserMedia
GET /v21.0/{ig-user-id}/media 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(
'/{ig-user-id}/media',
'{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(
"/{ig-user-id}/media",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{ig-user-id}/media",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{ig-user-id}/media"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
由此關係連線進行的閱讀將回傳 JSON 格式結果:
{ "
data
": [], "paging
": {} }
data
paging
錯誤 | 說明 |
---|---|
190 | Invalid OAuth 2.0 Access Token |
100 | Invalid parameter |
200 | Permissions error |
80002 | There have been too many calls to this Instagram account. Wait a bit and try again. For more info, please refer to https://developers.facebook.com/docs/graph-api/overview/rate-limiting. |
9005 | Video content was not found. |
2500 | Error parsing graph query |
media
edge from the following paths: 參數 | 描述 |
---|---|
caption string | 預設值: "" Caption for the media to be created |
collaborators array<string> | Field that adds collaborators to a media |
image_url string | A URL where the image to be uploaded |
is_carousel_item boolean | is_carousel_item |
location_id numeric string | Location id tagged in media |
media_type string | 預設值: "IMAGE" media_type |
product_tags array<JSON object> | IG Shopping products tagged in media |
share_to_feed boolean | share_to_feed |
thumb_offset string | A numberic string for thumbnail offset in video stream to generate thumbmail |
user_tags array<JSON object> | IG users tagged in media |
id
的節點。id
: numeric string, uri
: string, 錯誤 | 說明 |
---|---|
100 | Invalid parameter |
9004 | Only photo or video can be accepted as media type. |
200 | Permissions error |
36003 | The aspect ratio is not supported. |
110 | Invalid user id |
36001 | The image format is not supported. |
210 | User not visible |
190 | Invalid OAuth 2.0 Access Token |
36004 | The caption was too long. |
80002 | There have been too many calls to this Instagram account. Wait a bit and try again. For more info, please refer to https://developers.facebook.com/docs/graph-api/overview/rate-limiting. |