Instagram-feed.yizack.com is a subdomain of Yizack.com, which was created on 2018-12-30,making it 5 years ago. It has several subdomains, such as embeddable-music-player.yizack.com , among others.
Description:PHP library to retrieve an Instagram profile feed. Embed a simple Instagram feed of your authorized Instagram accounts on your website with our example using the library and Glide.js....
Discover instagram-feed.yizack.com website stats, rating, details and status online.Use our online tools to find owner and admin contact info. Find out where is server located.Read and write reviews or vote to improve it ranking. Check alliedvsaxis duplicates with related css, domain relations, most used words, social networks references. Go to regular site
HomePage size: 16.622 KB |
Page Load Time: 0.215583 Seconds |
Website IP Address: 172.67.218.246 |
embeddable-music-player | Embed a simple and beautiful HTML music player from local audio on your we embeddable-music-player.yizack.com |
Home - Retrieve Username - DPS Portals iforgot.dpsk12.org |
Instagram Business: Marketing on Instagram | Instagram for Business business.instagram.com |
PHP QR Code - QR code generator, an LGPL PHP library phpqrcode.sourceforge.net |
CSS Profile Home – CSS Profile | College Board css.collegeboard.org |
PHP Sandbox test PHP online PHP tester json.decode.onlinephpfunctions.com |
Goldzilla will be virtual in 2020 Retrieve a Golden of goldzilla.ragom.org |
How to Retrieve Deleted Text Messages on iPhone 15, 14, 13, 12, 11, XR & SE With/Without Backup? (8 retrievedeletedtextmessagesiphone.aolor.com |
KoolPHPSuite - Excellent PHP UI Controls For Web 2.0 Application: PHP Ajax Framework, PHP TreeView, demo.koolphp.net |
Aware Profile | Trading Profile Assessment aware-profile.daytradingpsychology.com |
MIT Athletics @mitathletics profile on Instagram • 1683 shop.mitathletics.com |
Huzzaz Video Embed - The Best Way To Showcase and Embed Videos pro.huzzaz.com |
instagram-feed | PHP library to retrieve an Instagram profile ... https://instagram-feed.yizack.com/ |
instagram-feed Example https://instagram-feed.yizack.com/example/ |
Yizack/instagram-feed Demo https://instagram-feed.yizack.com/demo/ |
Date: Sun, 12 May 2024 15:50:00 GMT |
Content-Type: text/html; charset=utf-8 |
Transfer-Encoding: chunked |
Connection: keep-alive |
Last-Modified: Wed, 23 Aug 2023 23:57:53 GMT |
Access-Control-Allow-Origin: * |
expires: Sun, 12 May 2024 16:00:00 GMT |
Cache-Control: max-age=600 |
x-proxy-cache: MISS |
X-GitHub-Request-Id: A826:2B09F1:356A399:370764B:6640E527 |
Age: 0 |
Via: 1.1 varnish |
X-Served-By: cache-lax-kwhp1940130-LAX |
X-Cache: MISS |
X-Cache-Hits: 0 |
X-Timer: S1715529000.403521,VS0,VE146 |
Vary: Accept-Encoding |
X-Fastly-Request-ID: 409a287fe475e9a6a1a83db4bbbb2daa81330239 |
CF-Cache-Status: DYNAMIC |
Report-To: "endpoints":["url":"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=S%2BlP99ARvgSIrgIvnC0eae5CtbARSvylodGhE7hOUc8WZYR84kInXsqqHHCwzB4mgsUEOeAmblnf%2FeVsNXSuYFbdQZzeSg5OKIPVJVrXINRw4BFJbLQSXG7kpUB6XTB2SRMQ1QoxD9gEFqyAp5Huj0W5YQTz0%2F5l"],"group":"cf-nel","max_age":604800 |
NEL: "success_fraction":0,"report_to":"cf-nel","max_age":604800 |
Server: cloudflare |
CF-RAY: 882b8fdc6d092ab8-LAX |
alt-svc: h3=":443"; ma=86400 |
charset="utf-8"/ |
content="IE=edge" http-equiv="X-UA-Compatible"/ |
content="width=device-width, initial-scale=1" name="viewport"/ |
content="Jekyll v3.9.3" name="generator" |
content="instagram-feed" property="og:title" |
content="en_US" property="og:locale" |
content="PHP library to retrieve an Instagram profile feed. Embed a simple Instagram feed of your authorized Instagram accounts on your website with our example using the library and Glide.js. [auto-refreshing acces token support]" name="description"/ |
content="PHP library to retrieve an Instagram profile feed. Embed a simple Instagram feed of your authorized Instagram accounts on your website with our example using the library and Glide.js. [auto-refreshing acces token support]" property="og:description"/ |
content="http://instagram-feed.yizack.com/" property="og:url"/ |
content="instagram-feed" property="og:site_name"/ |
content="website" property="og:type"/ |
content="summary" name="twitter:card"/ |
content="instagram-feed" property="twitter:title"/ |
your authorized Instagram accounts on your website with our example using the library and Glide.js. [auto-refreshing acces token support] instagram-feed PHP library to retrieve an Instagram profile feed, embed the feed of your authorized Instagram accounts on your website. The library uses the Instagram Basic Display API with auto-refreshing access token support. (Live Demo ) Requeriments PHP Hosting (with composer and fopen() support) Meta Developer App [Guide] Instagram Basic Display API [Guide] Installation To install the library, make sure you have Composer installed and using your command terminal run the following: composer require yizack/instagram-feed Use Installing this library will allow you to use the InstagramFeed class by simply importing the composer autoload. Import the composer autoload, use the namespace Yizack\InstagramFeed and initialize the InstagramFeed object. require "vendor/autoload.php" ; use Yizack\InstagramFeed ; $feed = new InstagramFeed ( "long-lived-access-token" // Paste your long-lived-access-token here ); To retrieve your Instagram feed array use the getFeed() function. $array = $feed - getFeed (); Or loop it directly in a foreach method wherever you need it. foreach ( $feed - getFeed () as $value ) { // your code } About the code InstagramFeed constructor arguments Argument Type Description Optional Default value token string Your Instagram Basic Display long-lived-access-token . No path string The path where the updated file will be saved on your server. Yes ig_token filename string The name of the file in which the date of the last token update will be stored. Yes updated.json getFeed() function Updates the date of the last token update and requests feed data from an Instagram account. Returns an array with the data of the last 25 posts with the following data for each one: Key Description username Instagram username. permalink Instagram post permalink. timestamp Instagram post timestamp. caption Instagram post caption. id Instagram post identifier. Long-Lived Access token This approach uses Long-Lived Access Tokens obtained by authorizing your Instagram account with your Meta App. Since Long-lived tokens are valid for 60 days and can be refreshed as long as they are at least 24 hours old and not expired, the getFeed() method will refresh your token everytime it is been called if 24 hours have passed. Tokens that have not been refreshed in 60 days will expire and can no longer be refreshed, so be sure to visit often the site where you placed the feed. Example of use Check the example folder for details. Requeriments Guide PHP Hosting You can use any PHP Hosting unless it does not support fopen() . Meta Developer App In order to use the Instagram API , we must first create a Meta App . Follow the steps below to create a Meta App. Go to Meta for Developers site , login and create App. Select the app type as None . Provide your App details. Look for Instagram Basic Display product, and click on Set up to use the Instagram API. Scroll down until you see an alert and click on Settings to update your App settings. Scroll down and click on the Add Platform button. Select the platform Website . Enter your Site URL and save changes. Instagram Basic Display API Now it is time to authorize your instagram account. Back to ProductsInstagramBasic Display. Create new App. Fill OAuth Redirect, Deauthorize Callback and Data Deletion Request URL with your site URL and save changes. Add Instagram testers. Enter your Instagram username and select your profile. Go to your Instagram account settings pageApp and WebsitesTester invites, accept the invite. Back to ProductsInstagramBasic DisplayUser Token Generator, you Instagram account should appear in the list, then click Generate Token button for authorize and generate long-lived access token for Instagram. Login and authorize the App. Click on I Understand checkbox and copy the generated token. Paste your token in your code. Repository Yizack/instagram-feed on GitHub. This site is open source. Improve this page...
Domain Name: YIZACK.COM Registry Domain ID: 2348212877_DOMAIN_COM-VRSN Registrar WHOIS Server: whois.cloudflare.com Registrar URL: http://www.cloudflare.com Updated Date: 2022-11-29T22:25:43Z Creation Date: 2018-12-30T05:00:29Z Registry Expiry Date: 2024-12-30T05:00:29Z Registrar: CloudFlare, Inc. Registrar IANA ID: 1910 Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited Name Server: LEX.NS.CLOUDFLARE.COM Name Server: MELISSA.NS.CLOUDFLARE.COM DNSSEC: unsigned >>> Last update of whois database: 2024-05-17T15:39:49Z <<<