Hello,
developing a (server side) app that connects to a facebok (or twitter, or whatever) app implies writing (o rcopying) a lot of boiler plate configurations and code and I'd like to develop a service that is able to use multiple facebook or twitter applications.

Since the configuration of the facebook config is usually static (i.e. something like: <facebook:config app-id="${facebook.clientId}" app-secret="${facebook.clientSecret}" /> in the configuration files) what would it be the best approach to have it dinamical so that a "generic" server application able to use multiple facebook applications (whose client ids and secrets are kept in a database) could be developed?

Is that even possible with the current spring social libraries?

Thanks for any suggestions!