My question is very simple and it’s in the title:
“Is it possible to make a open source app for Facebook?”
If so, how do you manage things in the app which are supposed to be private (like the api_id I think)?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yeah, of course. You just keep things like your
app_idoutside of your source repository (i.e. you have to manually copy it to your host server, to keep it out of the public eye).This is how you would run any open source application that has “secrets” – which is a lot of them. You just put a dummy file in its place that says something like, “Put your secrets in this file”, and you’re done. Don’t over think it. 😀
See the question, ActionMailer password security, for a specific example.