我们可以从 instagram 的每个 public 个人资料中获取的图像总数是多少

What is the total number of images we can fetch per public profile from instagram

  1. 我们可以为每个 public 配置文件获取的图像总数是多少
  2. 如果它只有200个像instagram,我们可以迭代吗?
  3. 我们能否获取每张图片的时间戳
  1. 我们可以为每个 public 配置文件获取的图像总数是多少

you can fetch all photos using api

  1. 如果只有200个like instagram,我们可以迭代做吗?

you can get 20 images per api call, and u can use pagination in api to iteratively get next set of 20

  1. 我们可以获取每张图片的时间戳吗

all photos have created_time in api response which has timestamp

您也可以查看下方link

Instagram API: How to get all user media?