Disregard this answer. See the correct answer
Wildcards aren't allowed for the Canvas URL. I don't see any restrictions on a Canvas URL having a redirect in it, so you could have one domain handle the Canvas URL and redirect to a client specific domain. You can pass parameters to the authentication request, and after authentication those parameters are passed to your Canvas URL and the server handling that request can determine where to redirect the Canvas URL.
So:
- (customer1 domain) invokes
https://www.facebook.com/dialog/oauth?client_id=YOUR_APP_ID&redirect_uri=(your
server)?customer=1
- oauth redirects to
(your domain)?customer=1
- (your domain) redirects to
(customer1 domain)
I think there could be security problems having a single application. Potentially any customer could get information about any other customer; at least having separate apps would make that harder. Also facebook analytics will lump together the usage of all your customers making it difficult to track their facebook usage at a customer level.
If each customer has a separate domain and that domain must handle all the oauth redirects then the answer is yes, you will need an app for each customer.