Quantcast
Channel: How to get a user's Instagram feed - Stack Overflow
Browsing latest articles
Browse All 9 View Live

Answer by Jonyx4 for How to get a user's Instagram feed

Answers should be updated, as now the only possible way is trough Instagram Facebook API --> https://developers.facebook.com/docs/instagram/oembed

View Article



Image may be NSFW.
Clik here to view.

Answer by Francisco Javier Arenas Ulloa for How to get a user's Instagram feed

this function goes in your App class, but can be a regular function and it will work anyways.<?php public function instagram(){ $user = 'your user here'; // you can get your token from here:...

View Article

Answer by Isuru Dilshan for How to get a user's Instagram feed

Found this medium article:- https://medium.com/@bkwebster/how-to-get-instagram-api-access-token-and-fix-your-broken-feed-c8ad470e3f02<?php $user_id=xxxxxx;//User ID is the first string of numbers...

View Article

Answer by Sky for How to get a user's Instagram feed

try this one a crawler type in raw form.function feed_instagram($url = "https://www.instagram.com/titaniumheart_"){ //$url ie https://www.instagram.com/titaniumheart_ $dom = new DOMDocument();...

View Article

Answer by Ciantic for How to get a user's Instagram feed

Update: 15.6.2017 - Instagram has changed the end point, the following does not work anymore.Since it's not anymore possible to get random users feed without approved application, I've figured out how...

View Article


Answer by Joseph Orlando for How to get a user's Instagram feed

Taking what i have seen around the internet and on this page, I have created an Instagram class (very simple, only for pulling feed, etc.') below.class Instagram { public static $result; public static...

View Article

Answer by LookingLA for How to get a user's Instagram feed

I did this:<?php function fetchData($url){ $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_TIMEOUT, 20); $result =...

View Article

Answer by Tony Stark for How to get a user's Instagram feed

Try this,<?php function fetchData($url){ $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_TIMEOUT, 20); $result =...

View Article


How to get a user's Instagram feed

I'd like to get a user's Instagram feed using PHP. I've signed up for an Instagram Developer Account and tried pulling in a user's info and photos, but the response isn't stable. Sometimes I get a...

View Article

Browsing latest articles
Browse All 9 View Live




Latest Images