[Instagram][PHP] 해시태그 검색 이미지 가져오기 #2 (Json 활용한 데이타 추출) > 기술자료 | 해피정닷컴

[Instagram][PHP] 해시태그 검색 이미지 가져오기 #2 (Json 활용한 데이타 추출) > 기술자료

본문 바로가기

사이트 내 전체검색

[Instagram][PHP] 해시태그 검색 이미지 가져오기 #2 (Json 활용한 데이타 추출) > 기술자료

SNS [Instagram][PHP] 해시태그 검색 이미지 가져오기 #2 (Json 활용한 데이타 추출)

페이지 정보


본문

Json 활용한 인스타그램 데이타 추출하기

<?php
    // 원제작 : mulder21c's 실험실 ( http://www.publisher.name/lab/h/instagram )
    // 수정 : 해피정닷컴 ( https://www.happyjung.com/lecture/2005 )
    // instagram 으로부터 REST 호출
    //$instaContents = file_get_contents("https://api.instagram.com/v1/users/self/media/recent?client_id=[My Client ID]&access_token=[My Access Token]&count=[추출수]");
    //$instaContents = file_get_contents("https://api.instagram.com/v1/tags/[키워드]/media/recent?access_token=[ACCESS_TOKKEN]&count=[추출수]");
    $instaContents = file_get_contents("https://api.instagram.com/v1/tags/셰프존/media/recent?access_token=2261712023.c6bfe0e.7f6b5b1091c245519a82f144c0f24ff2&count=4");
    $instObj = json_decode($instaContents)->data;
    // 받아온 json data 재가공
    for($i = 0; $i < count($instObj); $i++){
        //$json_data[$i] = array($instObj[$i]->images->thumbnail->url, str_replace("\n"," ",$instObj[$i]->caption->text));  // 150 x 150
        $json_data[$i] = array($instObj[$i]->images->low_resolution->url, $instObj[$i]->link, str_replace("\n"," ",$instObj[$i]->caption->text));  // 320 x 320
        //$json_data[$i] = array($instObj[$i]->images->standard_resolution->url, str_replace("\n"," ",$instObj[$i]->caption->text));  // 640 x 640
        
        echo "<a href='".$json_data[$i][1]."' target='_blank' title='".$json_data[$i][2]."'><img src='".$json_data[$i][0]."' style='width:43%; margin:3px 4px;' alt='".$json_data[$i][2]."'></a>";
        if ($_SERVER['REMOTE_ADDR'] == "106.243.93.251") {
            //echo $json_data[$i][$i];
        }
    }
    // 새로운 json data encode
    //echo "test1111";
    //echo("json_data =======>".$instaContents);
    //print_r($instObj);
    if ($_SERVER['REMOTE_ADDR'] == "106.243.93.251") {
        //echo $json_data[$i][$i];
        //echo $jsonR;
    }
?>

댓글목록

등록된 댓글이 없습니다.


Total 40건 2 페이지
  • RSS
기술자료 목록
20
SNS   42347  2017-08-21 17:54 ~ 2017-08-24 00:00  
19
SNS   24574  2017-08-06 03:55  
18
SNS   18748  2017-08-06 03:34 ~ 2017-08-06 00:00  
17
SNS   22805  2017-08-06 01:55 ~ 2018-01-09 00:54  
16
SNS   8899  2017-02-03 01:48  
15
SNS   9612  2016-01-12 05:24  
14
SNS   17743  2015-11-11 11:50  
13
SNS   12761  2015-11-09 10:33  
열람
SNS   14904  2015-11-07 21:13  
11
SNS   22534  2015-10-02 17:44 ~ 2015-11-07 00:00  
10
SNS   14771  2013-12-02 18:16 ~ 2015-10-02 00:00  
9
SNS   17553  2013-07-24 22:00 ~ 2018-06-20 22:07  
8
SNS   13893  2012-04-17 21:59  
7
SNS   14448  2011-11-14 09:10  
6
SNS   12763  2011-11-07 08:37  
5
SNS   11965  2011-11-06 04:38  
4
SNS   14745  2011-10-25 07:26  
3
SNS   14267  2011-10-22 13:34  
2
SNS   19677  2009-02-15 16:05  
1
SNS   13071  2009-02-13 16:40  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2024 해피정닷컴. All Rights Reserved.