-
-
Save sente/947491 to your computer and use it in GitHub Desktop.
| <!DOCTYPE html> | |
| <!-- | |
| Stuart Powers | |
| http://sente.cc/ | |
| http://twitter.com/stuartpowers | |
| --> | |
| <html> | |
| <head> | |
| <script src="http://j.mp/jqymin"></script> | |
| </head> | |
| <body> | |
| <div id="reddit-content"> | |
| </div> | |
| <script> | |
| $.getJSON( | |
| "http://www.reddit.com/r/pics.json?jsonp=?", | |
| function foo(data) | |
| { | |
| $.each( | |
| data.data.children.slice(0, 10), | |
| function (i, post) { | |
| $("#reddit-content").append( '<br>' + post.data.title ); | |
| $("#reddit-content").append( '<br>' + post.data.url ); | |
| $("#reddit-content").append( '<br>' + post.data.permalink ); | |
| $("#reddit-content").append( '<br>' + post.data.ups ); | |
| $("#reddit-content").append( '<br>' + post.data.downs ); | |
| $("#reddit-content").append( '<hr>' ); | |
| } | |
| ) | |
| } | |
| ) | |
| .success(function() { alert("second success"); }) | |
| .error(function() { alert("error"); }) | |
| .complete(function() { alert("complete"); }); | |
| </script> | |
| </body> | |
| </html> |
Hi, is there an example of trying to access the login API using jQuery? I tried using JSONP and changing the URL to "http://www.reddit.com/api/login?jsonp=?&user=LittleGlobalVillage&passwd=22091988", but that gives a 404. Any hint what I am doing wrong?
The wrappers available are only available in node.js and not in JS/jQuery.
@pklopping, welcome! (I didn't see your 6-month comment until a minute ago, whoops...)
Same as @difficultashish I can't figure out how to use the login api .. can someone a simple example on how to achieve a login with an http post request ?
If you want the capability to have your users login/upvote you can use the widget at http://embed.redditjs.com
how come you don't need to send a modhash or some other verification token?
how could i make it display the description of a post?
How could I make it so it makes a seperate div for each post ?
I have put it in a div called id of #reddit-content and I get the data in there but for some reason it makes the scroll box way too large.
Thank you!! have been looking for this for a while
It works :) Thank you
I have been searching for far too long to figure out how to do this. Thanks!