Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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)?

share|improve this question

closed as off topic by Mitch Wheat, Igy, Bill the Lizard Apr 7 at 17:30

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

up vote 1 down vote accepted

Yeah, of course. You just keep things like your app_id outside 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. :D

See the question, ActionMailer password security, for a specific example.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.