instagram-api

Instagram API with PHP

本小妞迷上赌 提交于 2020-08-26 09:33:30
问题 I have an application where I am using Facebook,Linkedin and Twitter Api's to post on the respective platforms.Now I am deciding to use Instagram to start posting using their Api but I have not found any good articles to implement their Api. Moreover I have read somewhere that it is not possible to post media contents using Instagram Api's. Is it true or we can now use Instagram to share media contents ? 回答1: Currently, it's only possible to post comments via the Instagram Graph API. You

Instagram API with PHP

て烟熏妆下的殇ゞ 提交于 2020-08-26 09:32:00
问题 I have an application where I am using Facebook,Linkedin and Twitter Api's to post on the respective platforms.Now I am deciding to use Instagram to start posting using their Api but I have not found any good articles to implement their Api. Moreover I have read somewhere that it is not possible to post media contents using Instagram Api's. Is it true or we can now use Instagram to share media contents ? 回答1: Currently, it's only possible to post comments via the Instagram Graph API. You

Instagram Rate Limit

老子叫甜甜 提交于 2020-08-26 04:51:42
问题 Are the endpoint-specific rate limits per access token, or for app period. Lets say I have 100 users of the app, (100 different access tokens) that make a relationship post request, is that not going to work? Or is it 60 requests max per user of the app, and no more than 5000 total requests from the app every hour.. 回答1: Each user can make total of 5000/hr API calls, POST API calls have different limits like relationship POST call has 60/hr. There is no limit for the app, each access_token

How to get video from Instagram public access API?

巧了我就是萌 提交于 2020-08-18 22:09:55
问题 I know that this api is working to get images but how about videos? https://www.instagram.com/username/?__a=1 I was able to get the thumbnail of the video but not the source or the url itself. 回答1: When you make above API call it would return code in it. looks something like this: BWhyIhRDBCw Whenever your media nodes has "is_video": true you can make following call: https://www.instagram.com/p/{code}/?__a=1 for e.g., https://www.instagram.com/p/BWhyIhRDBCw/?__a=1 This would return another

How to get video from Instagram public access API?

心不动则不痛 提交于 2020-08-18 22:02:38
问题 I know that this api is working to get images but how about videos? https://www.instagram.com/username/?__a=1 I was able to get the thumbnail of the video but not the source or the url itself. 回答1: When you make above API call it would return code in it. looks something like this: BWhyIhRDBCw Whenever your media nodes has "is_video": true you can make following call: https://www.instagram.com/p/{code}/?__a=1 for e.g., https://www.instagram.com/p/BWhyIhRDBCw/?__a=1 This would return another

Instagram Graph API: Media Thumbnail URL

若如初见. 提交于 2020-07-20 22:09:45
问题 I'm using the Instagram Graph API in a business account, and almost everything works just fine. I have created a WordPress port of the Facebook SDK, and the function that retrieves the media items looks like this (part of a class, the $fb object is already authenticated using the default_access_token in the class constructor): public function get_media( $business_account_id = '', $limit = 15 ) { $limit = absint( $limit ); try { $response = $this->fb->get( "/{$business_account_id}?fields=media

Instagram Graph API: Media Thumbnail URL

放肆的年华 提交于 2020-07-20 22:09:34
问题 I'm using the Instagram Graph API in a business account, and almost everything works just fine. I have created a WordPress port of the Facebook SDK, and the function that retrieves the media items looks like this (part of a class, the $fb object is already authenticated using the default_access_token in the class constructor): public function get_media( $business_account_id = '', $limit = 15 ) { $limit = absint( $limit ); try { $response = $this->fb->get( "/{$business_account_id}?fields=media

Instagram Graph API: Media Thumbnail URL

可紊 提交于 2020-07-20 22:08:26
问题 I'm using the Instagram Graph API in a business account, and almost everything works just fine. I have created a WordPress port of the Facebook SDK, and the function that retrieves the media items looks like this (part of a class, the $fb object is already authenticated using the default_access_token in the class constructor): public function get_media( $business_account_id = '', $limit = 15 ) { $limit = absint( $limit ); try { $response = $this->fb->get( "/{$business_account_id}?fields=media

Instagram Public Api ( __a=1 ) is banned. Any alternative?

北城以北 提交于 2020-07-18 02:25:43
问题 I used instagram public api (adding __a=1 to parameters of an url) to get a post detail ( caption , imageUrl , postType , likes , comments , viewsCount ). But it seems that Instagram banned that recently and returned a 403. It also asks for login when I try to directly open a post by its usrl. I tried to use the instagram private api (https://mgp25.github.io/) for getting post details, but after some requests instargam banned that too: "throttled by instagram because of too many api requests"