إصدار ‏‎Graph API‎‏

Instagram User

قراءة

An Instagram User

Requirements

TypeRequirement

Access Tokens

Permissions

ads_management or ads_read or business_managment or instagram_basic

مثال

Graph API Explorer
GET /v19.0/{instagram-user-id} 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(
    '/{instagram-user-id}',
    '{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(
    "/{instagram-user-id}",
    function (response) {
      if (response && !response.error) {
        /* handle the result */
      }
    }
);
/* make the API call */
new GraphRequest(
    AccessToken.getCurrentAccessToken(),
    "/{instagram-user-id}",
    null,
    HttpMethod.GET,
    new GraphRequest.Callback() {
        public void onCompleted(GraphResponse response) {
            /* handle the result */
        }
    }
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
                               initWithGraphPath:@"/{instagram-user-id}"
                                      parameters:params
                                      HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
                                      id result,
                                      NSError *error) {
    // Handle the result
}];
إذا كنت تريد التعرف على كيفية استخدام واجهة Graph API، يرجى قراءة ‏دليل استخدام واجهة Graph API‏.

المعلمات

لا تحتوي نقطة النهاية هذه على أي معلمات.

الحقول

الحقلالوصف
id
numeric string

ID of the Instagram user

follow_count
int32

Number of Instagram users that this Instagram user follows

followed_by_count
int32

Number of Instagram users that follow this Instagram user

has_profile_picture
bool

Indicates whether Instagram Account has a profile picture

is_private
bool

Whether the Instagram user is private

is_published
bool

Whether the Instagram user is published

media_count
int32

Number of active media posted by this Instagram user

profile_pic
string

URI to user's Instagram profile picture

username
string

Instagram username

عناصر الربط

حد الشبكة الخلويةالوصف
Edge<Business>

The businesses which are not owner but can advertise for this IG account

Edge<AREffect>

ar effects owned by IG user

Edge<IGUpcomingEvent>

upcoming_events

‎Error Codes‎

خطأالوصف
100Invalid parameter
190Invalid OAuth 2.0 Access Token
368The action attempted has been deemed abusive or is otherwise disallowed
102Session key invalid or no longer valid
80002There 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.
200Permissions error

إنشاء

لا يمكنك تنفيذ هذه العملية في نقطة النهاية هذه.

جارٍ التحديث

لا يمكنك تنفيذ هذه العملية في نقطة النهاية هذه.

جارٍ الحذف

لا يمكنك تنفيذ هذه العملية في نقطة النهاية هذه.