Click here to Skip to main content
15,917,795 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I need to consume the SharePoint and yammer API's.

I do not have any knowledge on API's. Please explain what is SharePoint API and how we can consume it. I am using Visual Studio 2005 with framework 2.0. Is it possible to work with API's using visual studio 2005 with c# and asp.net framework 2.0?

What I have tried:

Limitations of Web API & Web API in visual studio 2005 with framework 2.0
Posted
Updated 6-Dec-16 22:49pm

1 solution

The API is, effectively, a contract that the Sharepoint team has exposed. What this means is, if you supply a web request to the appropriate API "endpoint", some action will be taken that corresponds to the call you have made; this might be to update something, retrieve data, and so on. Now, these APIs are exposed as REST APIs, which means that any code that you write is going to have to be able to communicate over HTTP following REST conventions.

To be honest, doing this in VS2005, while possible, is going to require you to write a lot more code than if you were using a later version of VS and ASP. Is there a reason you have to stick with this platform? If you absolutely must use VS2005, then you need to follow the instructions and link from this[^].
 
Share this answer
 
Comments
CPallini 7-Dec-16 5:30am    
5.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900