Instagram API and Obtaining an Access Token



In this video we learn how to connect to the Instagram API. We get an access token, connect to the user/self endpoint, and display the user data in the browser.

Step 1: Setup and App on Instagram

Head over to https://www.instagram.com/developer/ and click on the “Manage Clients” tab in the header. Create an app and make note of the Client ID, Client Secret, and Redirect URI. When the user gets to your website, you will give them a link to click on that sends them to Instagram. You will pass along your Client ID and Redirect URI when the user clicks on this link. If those two things do not match, the user will fail to authenticate with your app.

Step 2: index.php Get an Access Token

This file will contain code we need in order to get an access token. When the user is redirected back from Instagram to the Redirect URI in your app, Instagram will tag on a “code” GET variable to the url. This $_GET[‘code’] variable is what we will use to generate an access token through Instagram.

This is the curl call we will use to hit Instagram’s access_token endpoint, with all of our app  credentials and the $_GET[‘code’] variable we have received from Instagram. If all credentials are correct, we will get back an access token.

$params = array( // post parmas 
    'client_id' => IG_CLIENT_ID,
    'client_secret' => IG_CLIENT_SECRET,
    'grant_type' => 'authorization_code',
    'redirect_uri' => IG_REDIRECT_URI,
    'code' => $_GET['code']
);

// call IG access_token endpoint with params to get a valid access token
$ch = curl_init( 'https://api.instagram.com/oauth/access_token' );
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
curl_setopt( $ch, CURLOPT_CUSTOMREQUEST, 'POST' );
curl_setopt( $ch, CURLOPT_POSTFIELDS, $params );
curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, FALSE );
$response_raw = curl_exec( $ch );
$response = json_decode( $response_raw, true );
curl_close( $ch );

// display our repsonse from IG
echo '<pre>';
print_r( $response );
echo '</pre>';

The access token will be displayed in the response in the browser if all credentials check out.

If there is no “code” in the URL, the user is not being redirected from Instagram. In this case the need to see a link that will direct them to Instagram allowing them to authorize with our app. The link below will send the user to Instagram. We pass along our Client ID and Redirect URI so Instagram knows the user is trying to authenticate with our app.

<!-- We need to go to IG, authorize user and redirect back to this page for a code -->
<h1>Instagram</h1>
<a href="https://api.instagram.com/oauth/authorize/?client_id=<?php echo IG_CLIENT_ID; ?>&redirect_uri=<?php echo IG_REDIRECT_URI; ?>&response_type=code">
	GET CODE
</a>

Step 3: user_info.php Display User Info from Instagram

This file will use our access token from step 1. We pass along that access token to Instagram’s “users/self” endpoint. If the access token is valid, the info for our user will be returned. We will be able to get profile pic, username, posts, followers, following, and more. Here is the curl call we make to the “users/self” endpoint in order to retrieve a users info.

// hit the users/self endpoint with our valid access token to get info on our user
$ch = curl_init( 'https://api.instagram.com/v1/users/self/?access_token=' . IG_ACCESS_TOKEN );
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, FALSE );
$response_raw = curl_exec( $ch );
$response = json_decode( $response_raw, true );
curl_close( $ch );

echo '<pre>';
print_r( $response );
echo '</pre>';

If all is well, we will get a response back formatted just like Instagram’s documentation said we would here https://www.instagram.com/developer/endpoints/users/.

Now, lets display our user info to the browser with HTML. In the HTML below we simply access data from the response we got back from Instagram. Just like it said in the documentation, we display the users profile image, username, posts, followers, and following.

<!-- display users info via html -->
<img src="<?php echo $response['data']['profile_picture']; ?>" />
<br />
<b>User Name: <?php echo $response['data']['username']; ?></b>
<br />
<b>Posts: <?php echo $response['data']['counts']['media']; ?></b>
<br />
<b>Followers: <?php echo $response['data']['counts']['followed_by']; ?></b>
<br />
<b>Following: <?php echo $response['data']['counts']['follows']; ?></b>
<br />

Links

YouTube Video

Code on GitHub

Live Demo

The full code example can be found in the GitHub link above. The video tutorial for this can also be found in the YouTube link above. That is going to do it for this post! Leave any comments/questions/concerns below and thanks for stopping by the blog!

299 comments

  1. I do consider all of the ideas you’ve presented for your post. They’re very convincing and can definitely work. Still, the posts are too quick for starters. Could you please lengthen them a bit from subsequent time? Thank you for the post.

  2. Hello my friend! I wish to say that this post is amazing, great written and come with almost all important infos. I¡¦d like to see more posts like this .

  3. Hi, I do believe this is a great blog. I stumbledupon it 😉 I may return once again since i have bookmarked it. Money and freedom is the best way to change, may you be rich and continue to help other people.

  4. Hey are using WordPress for your blog platform?I’m new to the blog world but I’m trying to get started and create my own.Do you need any coding knowledge to make your own blog?Any help would be really appreciated!

  5. Hello! Do you know if they make any plugins to safeguard against hackers?I’m kinda paranoid about losing everything I’ve worked hard on. Anysuggestions?

  6. Aw, this was an extremely good post. Finding the time and actual effort to make a superb articleÖ but what can I sayÖ I procrastinate a whole lot and never seem to get nearly anything done.

  7. พนันบอลอย่างไรให้ได้เงิน แทงบอลชนะยังไงไม่ถูกโกง UFABET จ่ายจริงจ่ายไม่ยั้งระบบเข้าใจง่าย แค่เพียงคลิกสมัครก็ทำเงินได้อย่างง่ายๆกับคาสิโนออนไลน์ สบายสุดๆชีวิตชิวๆชีวิตคลูๆทำเงิน สร้างกำไรสบายๆจึงควรที่ UFABET

  8. Amazing things here. I am very satisfied tosee your post. Thank you so much and I’m taking a look ahead to touchyou. Will you please drop me a mail?

  9. I do not even know the way I stopped up right here, however I thought this submit used to be great.I do not realize who you are but definitely you are going to a famous blogger ifyou happen to are not already. Cheers!

  10. Hi, this weekend is fastidious in support of me,for the reason that this point in time i am reading this fantastic educational paragraph here at myhome.

  11. It¡¦s actually a nice and helpful piece of information. I am happy that you just shared this helpful information with us. Please keep us up to date like this. Thanks for sharing.

  12. Hello there! This post couldn’t be written any better! Reading this post reminds me of my previous room mate! He always kept chatting about this. I will forward this article to him. Fairly certain he will have a good read. Thanks for sharing!

  13. Thanks for any other magnificent article. Where else could anyone get that kind of info in such an ideal way of writing? I have a presentation next week, and I am on the look for such information.

  14. fantastic issues altogether, you simply won a emblem new reader. What could you recommend about your post that you just made some days in the past? Any positive?

  15. 510283 318357You may locate effective specific development of any L . a . Weight loss program and each and every youre very essential. To begin with level is an natural misplacing during the too significantly weight. shed belly fat 152586

  16. เมื่อออนไลน์ปัง ทำอย่างไรถึงจะระงับใจตัวเองไม่ให้ซื้อของออนไลน์ หาวิธีระงับใจของตัวเองไม่ให้โอน ไม่ให้ซื้อ ไม่ให้จ่าย 1 หักดิบบอกตัวเองว่าจะเลิกซื้อ 2 กดไว้ก่อนแล้วค่อยซื้อ 3 ลบแอป ฯ Mobile Banking ทำให้ ซื้อของออนไลน์

  17. Aw, this was an extremely good post. Finding the time and actual effort to make a very good article… but what can I say… I hesitate a whole lot and never seem to get anything done.

  18. When someone writes an article he/she retains the thought of a user in his/her mind that how a user can be aware of it. Therefore that’s why this paragraph is great. Thanks!

  19. Heya just wanted to give you a brief heads up and let you know a few of the images aren’t loading correctly.I’m not sure why but I think its a linking issue.I’ve tried it in two different internet browsers and both show the same outcome.

  20. Hello my friend! I wish to say that this article is amazing, great written and come with almost all vital infos. I would like to see extra posts like this .

  21. Aw, this was a really good post. Spending some time and actual effort to make a great article… but what can I say… I hesitate a lot and never seem to get anything done.

  22. hi!,I like your writing so much! share we be in contact extra about your article on AOL? I require an expert in this area to unravel my problem. May be that is you! Taking a look ahead to look you.

  23. พนันบอลอย่างไรให้ได้เงิน พนันบอลชนะยังไงผิดคดโกง UFABET จ่ายจริงจ่ายไม่ยั้งระบบเข้าใจง่าย แค่เพียงคลิกสมัครก็ทำเงินได้อย่างไม่ยากเย็นกับคาสิโนออนไลน์ สบายสุดๆชีวิตชิวๆชีวิตคลูๆทำเงิน สร้างกำไรสบายๆจึงควรที่ UFABET

  24. Hey there! Do you know if they make any plugins to help with SEO? I’m trying to get my blog to rank for some targeted keywords but I’m not seeing very good results. If you know of any please share. Kudos!

  25. Thank you for every other fantastic post. Where else may just anyone get that type of info in such a perfect manner of writing? I have a presentation subsequent week, and I’m at the search for such info.

  26. Lo Shake a Via di Monte Testaccio 35 a Roma, è a location perfetta dove organizzare una festa di compleanno ma anche eventi di altro genere come ad esempio un’evento aziendale, una festa di laurea

  27. Liên Kết Coi Thẳng Bóng Đá Futsal Việt Nam Vs Lebanon Vòng Loại World Cupwest ham đấu với liverpoolNếu cứ nghịch như cơ hội vừa đè bẹp Everton tới 3-1 trên sân khách hàng

  28. I do believe all the ideas you’ve introduced to your post. They are very convincing and can definitely work. Still, the posts are too brief for newbies. May you please prolong them a little from subsequent time? Thanks for the post.

  29. I am extremely impressed with your writing skills aswell as with the layout on your blog. Is this a paid theme or didyou modify it yourself? Either way keep up the nice quality writing, it’s rare to see a great blog like this one today.

  30. 🥇สมัครฟรี🥇ไม่ต้องโยกเงิน🥇ฝาก-ถอนระบบออโต้ ขั้นต่ำ 1 uาท🥇ที่สำคัญ ไม่ลดการชนะ ทุกเกมส์🥇ปลอดภัย ดูแลดี บริการ 24 ชม.🥇ชวนเพื่อน รับโบนัสทันที20🥇ขอให้เราได้เป็นส่วนหนึ่งในการดูแลรายได้ของคุณ🥇สมัครเลย >

  31. I wanted to thank you for this very good read!! I certainly enjoyed every
    little bit of it. I have got you bookmarked to look at new things you post…

  32. Hello my friend! I wish to say that this article is awesome, nice written and come with approximately all important infos. I’d like to see more posts like this .

  33. Have you ever considered about adding a little bit more
    than just your articles? I mean, what you say is fundamental and all.
    Nevertheless think of if you added some great pictures or videos to give your posts more,
    “pop”! Your content is excellent but with pics and videos, this site could certainly be one of the most beneficial in its
    niche. Wonderful blog!

  34. Great post. I was checking constantly this blog and I am impressed! Very useful info specially the last part 🙂 I care for such information much. I was seeking this certain information for a long time. Thank you and good luck.

  35. If you would like to increase your knowledge only keep visiting
    this web page and be updated with the most up-to-date
    gossip posted here.

  36. We stumbled over here coming from a different web page and thought I may as well check things
    out. I like what I see so now i’m following you. Look forward to checking out your web page yet again.

  37. certainly like your website however you have to check the
    spelling on quite a few of your posts. Several of them are rife with
    spelling issues and I to find it very bothersome to inform the reality
    however I will definitely come again again.

  38. Thanks for your marvelous posting! I actually enjoyed reading it, you mightbe a great author. I will be sure to bookmark your blog anddefinitely will come back very soon. I want to encourage oneto continue your great job, have a nice afternoon!

  39. Hi are using WordPress for your blog platform?
    I’m new to the blog world but I’m trying to get started and set up my own. Do you require any html coding knowledge to
    make your own blog? Any help would be really appreciated!

  40. That is a very good tip especially to those fresh to the blogosphere. Brief but very precise infoÖ Thank you for sharing this one. A must read article!

  41. Great blog you have here but I was wanting to know if you
    knew of any discussion boards that cover the same topics talked about in this article?
    I’d really love to be a part of group where I can get opinions from other knowledgeable people that share the same interest.
    If you have any recommendations, please let me know.
    Cheers!

  42. wonderful points altogether, you simply gained a logo new reader. What might you recommend about your publish that you simply made some days ago? Any positive?

  43. I’m extremely impressed with your writing skills and also with the layout on your blog.Is this a paid theme or did you modify it yourself? Anyway keep up ban ca the cao nice quality writing, it’s rare to see a niceblog like this one these days.

  44. I enjoy what you guys are up too. This kind
    of clever work and coverage! Keep up the superb works guys I’ve incorporated you guys to
    my own blogroll.

  45. Hi there! Do you know if they make any plugins to protect against hackers?

    I’m kinda paranoid about losing everything I’ve worked hard on.
    Any suggestions?

  46. Good article and straight to the point. I am not sureif this is actually the best place to ask butdo you guys have any ideea where to hire some professional writers?Thx 🙂

  47. An interesting discussion is definitely worth comment. I think that you ought to write more on this topic, it might not be a taboo subject but generally folks don’t talk about such topics. To the next! Best wishes!!

  48. Good day very nice website!! Man .. Beautiful ..
    Wonderful .. I will bookmark your website and take the feeds additionally?
    I’m satisfied to search out numerous useful info right here in the put up,
    we need work out more strategies on this regard,
    thanks for sharing. . . . . .

  49. Howdy! I could have sworn Iíve been to your blog before but after going through many of the posts I realized itís new to me. Anyways, Iím definitely delighted I stumbled upon it and Iíll be book-marking it and checking back frequently!

  50. What’s up, I read your blogs on a regular basis. Your humoristic style is awesome, keep doing what you’re doing!

  51. Hello There. I found your blog the usage of msn. This is an extremely smartly written article.
    I will make sure to bookmark it and return to learn extra of your helpful information. Thank you for
    the post. I will definitely return.

  52. Excellent post however , I was wondering if you could write a litte more on this subject? I’d be very grateful if you could elaborate a little bit further. Appreciate it!

  53. My coder is trying to persuade me to move to .net from PHP.
    I have always disliked the idea because of the costs.
    But he’s tryiong none the less. I’ve been using Movable-type on a number of
    websites for about a year and am nervous about switching to another
    platform. I have heard great things about blogengine.net.
    Is there a way I can transfer all my wordpress content
    into it? Any kind of help would be greatly appreciated!

  54. It’s really a great and useful piece of info. I am satisfied that you shared this helpful info with us. Please stay us up to date like this. Thank you for sharing.

  55. Supplier Sinar Baja Medan – Supplier BESI ASSENTAL HEXAGONAL Terbaik dikota medan, Harga BESI COIL
    Terbaik di medan, Supplier PLAT HITAM Terbaik
    dikota medan , Supplier PLAT RAIL Terbaik dikota medan – Sinar Baja

  56. Excellent post. I was checking continuously this blog and I am impressed!Extremely helpful information particularly the last part 🙂 I care for such information alot. I was seeking this certain info for a very long time.Thank you and good luck.

  57. What i don’t understood is if truth be told how you are no longer actually a lot more well-favored
    than you might be right now. You are so intelligent. You recognize thus
    significantly in relation to this subject,
    made me for my part believe it from so many varied angles.
    Its like men and women aren’t interested except it’s
    something to accomplish with Girl gaga! Your personal stuffs outstanding.
    Always handle it up!

  58. Having read this I thought it was really informative. I appreciate you finding the time and effort to put this article together. I once again find myself spending a lot of time both reading and commenting. But so what, it was still worthwhile!

  59. Very interesting topic, thanks for putting up. «The great leaders have always stage-managed their effects.» by Charles De Gaulle.

  60. Heya i am for the first time here. I found this board and I in finding It really helpful & it helped me
    out a lot. I hope to present something again and help others such
    as you helped me.

  61. I am not sure where you’re getting your information, but good topic. I needs to spend some time learning much more or understanding more. Thanks for great information I was looking for this information for my mission.

  62. Aw, this was an exceptionally nice post. Finding the time and actual effort to make a top notch articleÖ but what can I sayÖ I put things off a whole lot and never manage to get nearly anything done.

  63. Hi friends, how is all, and what you want to say about this article, in my view its actually amazing in favor of me.

  64. I like this post, enjoyed this one appreciate it for putting up.Here is my blog post … Gorges Anti Wrinkle Cream

  65. This is my first time pay a quick visit at here and i am really happy to read everthing at single place.

  66. When I initially commented I clicked the “Notify me when new comments are added” checkbox and now each time a comment is added I get several emails with the same comment. Is there any way you can remove people from that service? Appreciate it!

  67. Hi there, just became aware of your blog through Google, and found that it’s trulyinformative. I’m going to watch out forbrussels. I’ll appreciate if you continue this in future.Many people will be benefited from your writing. Cheers!

  68. I am sure this paragraph has touched all the internet viewers, its really really fastidious article on building up new blog.

  69. What’s up, of course this article is in fact pleasant and I havelearned lot of things from it regarding blogging.thanks.

  70. Aw, this was an extremely good post. Finding the time and actual effort to produce a superb article… but what can I say… I hesitate a lot and don’t manage to getanything done.

  71. whoah this blog is excellent i love reading your articles. Keep up the great work! You know, lots of people are looking around for this information, you can aid them greatly.

Leave a Reply

Your email address will not be published. Required fields are marked *