如何在您的网站上使用Instagram照片

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在您的网站上使用Instagram照片相关的知识,希望对你有一定的参考价值。

Thanks to followgram.me you can read a public feed with your photos. Use this code to retrieve your Instagr.am photos and use them on your web.
  1. function getFollowgram($u) {
  2. // function read instagram feed through followgram.me service
  3. // thanks Fabio Lalli
  4. $url = "http://followgram.me/".$u."/rss";
  5. $s = file_get_contents($url);
  6. preg_match_all('#<item>(.*)</item>#Us', $s, $items);
  7. $ar = array();
  8. for($i=0;$i<count($items[1]);$i++) {
  9. $item = $items[1][$i];
  10. preg_match_all('#<link>(.*)</link>#Us', $item, $temp);
  11. $link = $temp[1][0];
  12. preg_match_all('#<pubDate>(.*)</pubDate>#Us', $item, $temp);
  13. $date = date("d-m-Y H:i:s",strtotime($temp[1][0]));
  14. preg_match_all('#<title>(.*)</title>#Us', $item, $temp);
  15. $title = $temp[1][0];
  16. preg_match_all('#<img src="([^>]*)">#Us', $item, $temp);
  17. $thumb = $temp[1][0];
  18. $ar['date'][$i] = $date;
  19. $ar['image'][$i] = str_replace("_5.jpg","_6.jpg",$thumb);
  20. $ar['bigimage'][$i] = str_replace("_5.jpg","_7.jpg",$thumb);
  21. $ar['link'][$i] = $link;
  22. $ar['title'][$i] = $title;
  23. }
  24. return $ar;
  25. }

以上是关于如何在您的网站上使用Instagram照片的主要内容,如果未能解决你的问题,请参考以下文章

怎么把照片发到网上

如何使用 loc_physical_ms 在您的网站上获取城市和邮政编码?

Jquery Instagram 提要仅适用于我的用户名

AdSense 使用教程: 通过让 Google 在您的网站上投放广告,帮助您从中获利

您如何在您的网站中实施 quickblox?

如何使用 Instagram 的 API 显示我自己的照片库?