我需要使用OAuth,bearer access_token
和refresh_token
构建RESTfull Web服务。应通过检查现有的sql db来完成身份验证和授权。
由VS2013提供的web api模板通过此connectionString在其自己的本地sqlexpress数据库中写入/读取:
connectionString="Data Source=(LocalDb)\v11.0;AttachDbFilename=|DataDirectory|\aspnet-WebApiTest-20150423094253.mdf;Initial Catalog=aspnet-WebApiTest-20150423094253;Integrated Security=True"
经过几个小时的谷歌搜索,我得到的教程和示例与我的问题不符。
那么如何将我的数据库绑定到项目中进行身份验证/授权?