2017-09-27 160 views
0

我目前正在尋找Instagram的飼料集成在一個Web應用程序。官方API是:Instagram Graph APIInstagram Platform APIInstagram媒體/飼料API

然後我發現一個端點就像https://www.instagram.com/instagram/media/上SO,herehere,這似乎是一個未公開的(至少我還沒有看到它在Facebook/Instagram的文件)。 它是公開訪問的,你可以得到很多關於帖子的信息,包括喜歡和評論。

所以我的問題是:

  • 是記錄了一些在https://www.instagram.com/{username}/media/
  • 它在互聯網上被廣泛使用嗎?

回答

0

它不是官方的API,它可能隨時停止工作,在應用程序中使用不是一個好主意。其他的Instagram的API無證已經停止在過去的工作,其良好的使用一次性的項目,但我不會在一個應用程序/網站上使用它。

+0

你說得對,我們不應該使用無證API。我認爲人們必須看到這一點,或許可以提供一些更多的細節:) – terry

+0

你可以使用它,我有時用它,但我不依賴於它或把它寫的應用程序。 – krisrak

+0

我可以問你用它做什麼? – terry

0

此端點已停止11月7日2017年工作,但您可以使用此另一個端點得到相同的結果:

GET /users/user-id/media/recent 
https://api.instagram.com/v1/users/{user-id}/media/recent/?access_token=ACCESS-TOKEN 

Get the most recent media published by a user. 
The public_content scope is required if the user is not the owner of the access_token. 

REQUIREMENTS 
Scope: public_content 

PARAMETERS 
ACCESS_TOKEN A valid access token. 
MAX_ID Return media earlier than this max_id. 
MIN_ID Return media later than this min_id. 
COUNT Count of media to return. 

https://www.instagram.com/developer/endpoints/users/#get_users_media_recent