request api url / آدرس درخواست از ای پی آی
https://mirhamedrooy.ir/api/v1/?username=[INSTAGRAM_USERNAME]
output of Api / خروجی ای پی آی درخواستی
{
"rouigram": {
"user_id": 2921289763,
"username": "mohammadali_mirhamed",
"fullname": "Mohammadali Mirhamed",
"profile_hd_photo": "https://scontent-frx5-1.cdninstagram.com/vp/c0758292e95bfa2e1281358dabefbab7/5C66F960/t51.2885-19/18160290_106886103212820_5029115577847775232_a.jpg",
"follower_count": 2921,
"following_count": 379,
"biography": "#Web|#Mobile Application #Developer\n#English Student | #Astronomy Researcher\n#Work At #poulstar As #Mentor and #Programmer",
"external_url": "https://www.mirhamedrooy.ir/",
"is_private": "no",
"media_count": 47
},
"status": "ok"
}
php language sample / مثال با استفاده از پی اچ پی
#Here is your instagram username
$username = "mohammadali_mirhamed";
#api url
$api = 'http://api.pythony.ir/v1/?username='.$username;
#send request to api and then get the information
$instaOBJ = json_decode(file_get_contents($api),true);
echo $instaOBJ['rouigram']['user_id'];
befor using python sample you shall type below code in terminal / قبل از استفاده از کد پایتون باید دستور زیر را در ترمینال تایپ کنید
pip install rouigram
python language sample / مثال با استفاده از پایتون
import rouigram as instagram
info = instagram.getInformation("mohammadali_mirhamed") #define Username
print(instagram.getInformation.user_id(info)) # You will get user id
print(instagram.getInformation.username(info)) # You will get username
print(instagram.getInformation.fullname(info)) # You will get fullname
print(instagram.getInformation.follower_count(info)) # You will get follower count
print(instagram.getInformation.following_count(info)) # You will get following count
print(instagram.getInformation.media_count(info)) # You will get media_count
print(instagram.getInformation.external_url(info)) # You will get Website link
print(instagram.getInformation.is_private(info)) # You will get is_private
print(instagram.getInformation.profile_hd_photo(info)) # You will get FullHd profile Image
print(instagram.getInformation.biography(info)) # You will get biography
About Rouigram / در بارهی روی گرام
Rouigram is a simple and use-full platform for Instagram user id without any registration.
instagram user_id is the important factor to use other API of Instagram for making interconnected
application. You can help develop this code in the github.
روی گرام یک سکوی ساده و پرکاربرد ، رایگان است که برای دریافت آی دی کاربری انیستاگرام بدون نیاز به ثبت نام ، مورد استفاده میگرد.آی دی کاربری اینستاگرام یکی از فاکتور های مهم برای دریافت API های دیگر جهت ساخت برنامه های کاربردی است .علاوه بر آی دی کاربر اطلاعاتی دیگر از پروفایل کاربر می توانید در قالب json دریافت کنید . کد روی گرام در گیت هاب قرار خواهد گرفت تا توسعه دهندگان بتوانند کمک به بهبود آن کنند .