Carddav server implementation

2.2k views Asked by At

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.

1

There are 1 answers

1
shamp00 On BEST ANSWER

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