I'm new to coding, and I have a idea but don't know how to code it [closed]
I have a idea for my first application. It should be able to write a new note, email the note, post it to Facebook or Twitter, etc. But I don't know how to code it. How can I do it?
The usual way to post something on Facebook or Twitter is to use their APIs. They don't provide any service that takes emails and creates a status or a tweet.
The reason is trivial: email is very unsecure, you can't identify the originator of an email and such a service would lead to massive spamming.
The only way out would be: send the emails to your own server, then use the Facebook or Twitter API (with your own Facebook/Twitter ids) to post the content of the emails.
If the question was more directed towards learning Java or Android - then I agree to commenters and close-voters, teaching languages is out of scope for this Q&A site.
I would recommend that you start off with a modern high-level language to learn the basics of programming. I would recommend that you start off with either of the following:
- Ruby : http://tryruby.org/ (an interactive tutorial)
- Python : http://heather.cs.ucdavis.edu/~matloff/Python/PythonIntro.pdf (PDF link)
精彩评论