You're looking at Less Wrong's discussion board. This includes all posts, including those that haven't been promoted to the front page yet. For more information, see About Less Wrong.

lmm comments on Open thread, September 22-28, 2014 - Less Wrong Discussion

5 Post author: Gunnar_Zarncke 22 September 2014 05:59AM

You are viewing a comment permalink. View the original post to see all comments and the full post content.

Comments (213)

You are viewing a single comment's thread. Show more comments above.

Comment author: lmm 25 September 2014 10:24:08PM 0 points [-]

The facebook API is probably the friendliest and best-documented "web API" out there (which is not to say it's good, and they're terrible about changing it all the time - but compared to their competitors...). Their docs have examples, and also the interactive "graph explorer" is a very good place to play around to start with. You edit code the way you normally do, and your code makes web requests to their APIs. If you're not comfortable with that, maybe some tutorials on e.g. web scraping (that's a popular thing to do in Python) would help you get more comfortable with doing HTTP in Python? Or from the other edge, try making the necessary HTTP ("REST") requests to facebook "by hand" using something like Postman, and then writing code to do that.

As others have said, start with a "hello world" and then add features to it.