Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to design a public API in ASP.Net? [closed]

Tags:

c#

asp.net

api

I'm currently developing a web application in ASP.Net with SQL Server and I would like to have some sort of public API so that my users can get their data and manipulate it at their own will.

I've never done something like this, can you recomend some guidelines for me to follow?

like image 783
holiveira Avatar asked Feb 02 '09 14:02

holiveira


1 Answers

You are going to want to look into web services. Here is a good article that shows you how to create RESTful WCF services. Uising RESTful services will allow your users to invoke API methods in your service with nice clean URLs.

like image 158
Andrew Hare Avatar answered Oct 10 '22 17:10

Andrew Hare