What would be the best way to implement a RESTful service that allows multiple authentication mechanisms. E.g., a custom one with a username/password, Facebook, Gooogle and some other OAuth identity providers?
My idea is to provide an authentication token and authentication type as parameters to the call, where for the username/password the token it is just a base64(username:password) string (I am using HTTPS):
GET service_url/data?auth_type=fb&auth_token=12312312313¶m1=...
What I'm looking for is if there are any other (best) practices for implementing such kind of authentication.