benbyf Posted January 23, 2015 Share Posted January 23, 2015 Anyone made or or would be interested in a instagram module that displays a profiles images? also if you have any pointers that would be helpful. Thanks Link to comment Share on other sites More sharing options...
benbyf Posted April 9, 2015 Author Share Posted April 9, 2015 no?? still looking to do this, twitter module and good place to start? never made a module before Link to comment Share on other sites More sharing options...
Martijn Geerts Posted April 9, 2015 Share Posted April 9, 2015 @benbyf, you just have to start... We can help when you're stuck. 2 Link to comment Share on other sites More sharing options...
arjen Posted April 9, 2015 Share Posted April 9, 2015 I'm in the planning of building one, since I need it for a side project. I won't have time until end of June, but it's on the list. Link to comment Share on other sites More sharing options...
benbyf Posted April 9, 2015 Author Share Posted April 9, 2015 I'm in the planning of building one, since I need it for a side project. I won't have time until end of June, but it's on the list. got any tips? got to get mine off teh ground soon for a client by the end of may Link to comment Share on other sites More sharing options...
Jan Romero Posted April 9, 2015 Share Posted April 9, 2015 Are you aware of this? What do you need help with specifically? You should be able to feed Instagram’s API URLs into $wireHttp->getJSON($url) and get the requested data back as an array. See here for more info. Link to comment Share on other sites More sharing options...
benbyf Posted April 9, 2015 Author Share Posted April 9, 2015 Mainly design, frontend, templating and js guy so building modules is both new and scary to me.I was merely wondering if there was a good place to start. For example, i was going to look at the twitter module as it will do a similar thing. Link to comment Share on other sites More sharing options...
Macrura Posted April 9, 2015 Share Posted April 9, 2015 hey - not to rain on anyone's module development parade, but i've been scoping instagram widgets on codecanyon, for an existing client/site who requested it, and i seem to have found at least a handful of decent ones.. @benbyf - are there any limitations that would prevent you from using something like that? Link to comment Share on other sites More sharing options...
Martijn Geerts Posted April 9, 2015 Share Posted April 9, 2015 Posting and getting may sound more difficult then Ryan has made it for us. To give you a simple example that extends Jan Romero's post: $http = new WireHttp; $request = array( 'public-key' => 'xyx1234_what-instagram-wants', 'just-a-key' => 'Just some value you want to add to your get request', ); $data = $http->get('http://instagram.com/request/some/partt', $request); // data should have data coming from instagram var_dump($data); 3 Link to comment Share on other sites More sharing options...
adrian Posted April 9, 2015 Share Posted April 9, 2015 (edited) To give you a simple example that extends Jan Romeo's post: His avatar is one scary looking Romeo Edited April 9, 2015 by Martijn Geerts sorry Jan :-) 1 Link to comment Share on other sites More sharing options...
benbyf Posted April 9, 2015 Author Share Posted April 9, 2015 Posting and getting may sound more difficult then Ryan has made it for us. To give you a simple example that extends Jan Romero's post: $http = new WireHttp; $request = array( 'public-key' => 'xyx1234_what-instagram-wants', 'just-a-key' => 'Just some value you want to add to your get request', ); $data = $http->get('http://instagram.com/request/some/partt', $request); // data should have data coming from instagram var_dump($data); awesome. is that simply in the templates? i guess i could experiment and then create a module once ive got the basics down and learn a bit more about it etc. Link to comment Share on other sites More sharing options...
Martijn Geerts Posted April 9, 2015 Share Posted April 9, 2015 is that simply in the templates?yes Link to comment Share on other sites More sharing options...
benbyf Posted April 9, 2015 Author Share Posted April 9, 2015 literly no idea what im doing $value = $input->get->access_token; $http = new WireHttp; $para = array( 'count' => 1, 'access_token' => $value, 'min_id'=>'', 'max_id'=>'' ); $url = 'https://api.instagram.com/v1/users/self/feed/'; $data = $http->get($url, $para); // data should have data coming from instagram var_dump($data); Link to comment Share on other sites More sharing options...
arjen Posted April 13, 2015 Share Posted April 13, 2015 It's not complicated, but you have to grasp some basic level on how to interact with API's. Just follow a tutorial like this one. If you got it working, try the WireHttp class you are already trying since that will be a lot cleaner. 1 Link to comment Share on other sites More sharing options...
justb3a Posted October 1, 2015 Share Posted October 1, 2015 I needed this right now for a client project. Here is a little module to handle instagram feed output. (Forum | Github) Maybe someone wants to test or extend it 2 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now