Question

I have to create a webservice for Carddav server implementation to provide contacts to Iphone after authentication.

I want to know the steps from start to end about url and parameter it will expect.

Means, at first it hit with url, username and password.

So, How i have to configure my methods and parameter?

I have readout the RFC links but still its not clear to me.

Was it helpful?

Solution

You should look at the documentation for Google's implementation.

For authentication, use OAuth. If you need to supply your own OAuth authentication, look at DotNetOpenAuth.

For your REST Api, try to mimic Google's implementation which looks something like this:

Principal

https://www.googleapis.com/carddav/v1/principals/{userEmail}

Home Set

https://www.googleapis.com/carddav/v1/principals/{userEmail}/lists

Address Book

https://www.googleapis.com/carddav/v1/principals/{userEmail}/lists/default

Contact

https://www.googleapis.com/carddav/v1/principals/{userEmail}/lists/default/contactId
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top