Jump to content
  • 0

Instagram


2BC

Question

Czy ktoś z Was kiedykolwiek miał tyle cierpliwości żeby skonfigurować Instagram ? Mamy jakiś tam szablon który wykorzystuje jakąś wtyczkę do integracji z Insta. Całość robiona poprzez AppPage Builder. A wtyczka oparta na http://instafeedjs.com

Konfiguracja nie wygląda trudno, bo musimy podać: 

Client ID

Access Token

User ID 

 

Zatem wchodzę na piękną i przejrzystą stronę https://www.instagram.com/developer/ gdzie się rejestruje, a potem biorę REGISTER A NEW CLIENT. W ten sposób otrzymuje Client ID i Client Secret który wykorzystuje aby uzyskać Access Token. A dokładniej w taki sposób uzyskuje access token: https://instagram.com/oauth/authorize/?client_id=[CLIENT_ID_HERE]&redirect_uri=http://localhost&response_type=token

 
I jako response otrzymuje numer ACCESS TOKEN. User ID otrzymuje wykorzystując darmowe narzędzia online, np. https://smashballoon.com/instagram-feed/find-instagram-user-id/ 
 
No i wszystko super...tylko, że nic nie działa...na stronie mam wolne miejsce. Podgląd kodu to: 

         var feed = new Instafeed({
            clientId: "NUMER CLIENT ID",
                        accessToken: "ACCESS TOKEN",
                                                            get: "user",
                                                              userId: "NUMER USER ID",
                                    sortBy: "none",
                                    links: "1",
                
                        limit: "16",
                                    resolution: "thumbnail",
                                });
        feed.run();
		
		function SetOwlCarouselFirstLast(el){
			el.find(".owl-item").removeClass("first");
			el.find(".owl-item.active").first().addClass("first");

			el.find(".owl-item").removeClass("last");
			el.find(".owl-item.active").last().addClass("last");
		}
    

Jakiś pomysł jak można skonfigurowac to cos ? 

 

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

obecnie instagram pokazuje tylko Twój feed, czy zatem masz jakeś zdjęćia na swoim profilu instagram?

co pokazuje konsola przeglądarki na stronie, na której powinien być feed?

Tak. Mam zdjęcia na profilu. 

Konsola pokazuje error: instafeed.min.js:9 Uncaught Error: No user specified. Use the 'userId' option. 

Pomimo tego, że UserID jest podany w ustawieniach modułu. 

 

@e_com - nie wydaje mi się aby ten moduł rozwiązał problem...szczególnie, że pewnie będzie trzeba kombinować aby zarządzać nim przez AppPageBuilder. 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...