I have developed WCF(RestService) and now I am concerned about its security.
With the help of fiddler I got all request, response parameters of particular service. As example,
URL of service : ../RemoteService/WebService.svc/Login Headers : application/json Body : { "apiSecretKey":"sda564456asdasda45sdsad452635", "userName":"abc@test.com", "password":"test@123" }
Api key is main concern because whole developed service run on this and if any one get this key then that person can access data and use the service.
How will I more secure my request Data?
Please suggest.