-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Hi Nikhil, Having issue in loading the instagram feeds #6
Comments
Hi, I'm experiencing the same issue. |
HI, Is there a fix yet. I'm having the same issue. |
Just adding my voice to the pile here - web part never loads, not even your "test" Instagram! |
Adding to this - weirdly my users in California can see the web part with no issue, but my users in Denver cannot. It's not tied to an ISP or a web filter or cellular provider or desktop vs. mobile, it seems to be entirely regional. I went ahead and disabled the SharePoint CDN, thinking this might help address this, but no effect after 1 day. I see this error using Chrome dev tools in Denver (California does not):
|
I am seeing the same issue here in Texas with exa any update. |
I tried this today and it's not working. I confirmed with a coworker that this web part worked for a little while and then he saw it was broken today. |
I'm having the same problems as others have mentioned. It's blank. |
Would be great to get this issue fixed. Instagram web part is not working. |
The issue persist?, is there are work around for it? |
Issue is still there...however I am getting is intermittently. Sometimes I can see instagram feeds, sometimes it just keep displaying blank tiles with loading mode. And yes its CORS issue when it doesnt work. But then how it works at times. |
I have the same issue. How to solve it? I need Instagram web part to be in my page |
Try the code below instead of the img tags, change it to iframes instead. If you check the dev for facebook and read about it it looks like you have to use it to get application id / tokens etc from instagram to be able to post information like before. But if you write the code with iframes like this it works for me. :)
|
@sansa91 forgive my ignorance, but this code needs to be changed in this project, or I can use a code snippet web part with this info? If the code needs to be changed...maybe we fork/copy this into a new project and let this abandoned one die? |
This is just a simple quickfix that is pretty limited if a company want a cheap quick version of showing the instagram feed. you should add a configuration in the propertypane to be able to limit the amount of posts because now it shows the last 12 posts in this manner. You could make a new project on this webpart just for this since this way of posting an instagram feed does not work anymore, it is possible to use the ''embed webpart'' that is built-in within SharePoint to show ''1'' post aswell, but if we wan't to make this a good-looking webpart today we have to use the facebook developer portal or what you wan't to call it to collect an application ID and an instagram application ID :) |
Hi All, Is there a decent solution yet? I was thinking about solving the CORS issue itself, and found following link: It says that when using an SpHttpRequest instead of using the link, the CORS issue should be solved. Thx |
Dear,
How can I change the code if I install only the .sppkg file?
Please tell me step by step.
Regards,
…________________________________
From: sansa91 ***@***.***>
Sent: Tuesday, June 1, 2021 11:46 AM
To: thenikhilk/sharepoint-instagram-feed ***@***.***>
Cc: Zahra234 ***@***.***>; Comment ***@***.***>
Subject: Re: [thenikhilk/sharepoint-instagram-feed] Hi Nikhil, Having issue in loading the instagram feeds (#6)
Try the code below instead of the img tags, change it to iframes instead. If you check the dev for facebook and read about it it looks like you have to use it to get application id / tokens etc from instagram to be able to post information like before. But if you write the code with iframes like this it works for me. :)
<div className={classNames.postsGridSizer}>
<div className={classNames.postsGridPadder}>
<a target='_blank' href={'https://www.instagram.com/p/' + post.shortcode} className={classNames.postsGridLink}>
{/* <img src={post.thumbnail_src} className={classNames.postsGridImage} /> */}
<iframe src={'https://www.instagram.com/p/' + post.shortcode + '/embed'} className={classNames.postsGridImage} />
{/* <iframe src={post.thumbnail_src + '/embed'} className={classNames.postsGridImage} /> */}
</a>
</div>
</div>
</div>`
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<#6 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AHZA6AJMLXA4WWGYVMPK3YLTQSM43ANCNFSM4JSSKLDQ>.
|
Dear,
Kindly send the .sppkg that you did after changing the code.
Regards,
…________________________________
From: sansa91 ***@***.***>
Sent: Tuesday, June 1, 2021 11:46 AM
To: thenikhilk/sharepoint-instagram-feed ***@***.***>
Cc: Zahra234 ***@***.***>; Comment ***@***.***>
Subject: Re: [thenikhilk/sharepoint-instagram-feed] Hi Nikhil, Having issue in loading the instagram feeds (#6)
Try the code below instead of the img tags, change it to iframes instead. If you check the dev for facebook and read about it it looks like you have to use it to get application id / tokens etc from instagram to be able to post information like before. But if you write the code with iframes like this it works for me. :)
<div className={classNames.postsGridSizer}>
<div className={classNames.postsGridPadder}>
<a target='_blank' href={'https://www.instagram.com/p/' + post.shortcode} className={classNames.postsGridLink}>
{/* <img src={post.thumbnail_src} className={classNames.postsGridImage} /> */}
<iframe src={'https://www.instagram.com/p/' + post.shortcode + '/embed'} className={classNames.postsGridImage} />
{/* <iframe src={post.thumbnail_src + '/embed'} className={classNames.postsGridImage} /> */}
</a>
</div>
</div>
</div>`
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<#6 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AHZA6AJMLXA4WWGYVMPK3YLTQSM43ANCNFSM4JSSKLDQ>.
|
Still the output is three boxes with empty images...... keep on loading
please help
The text was updated successfully, but these errors were encountered: