I see that SharePoint 2010 makes javascript ajax calls to some pretty slick internal services like
https://<server>/_vti_bin/socialdatainternalservice.json
https://<server>/_vti_bin/TaxonomyInternalService.json
how are these different than something like https://<server>/_vti_bin/SocialDataService.asmx which has documentation. There are some requests used by those internal calls which I would really like to be able to duplicate. Any help would be appreciated.
Watching the console which pressing the "Tags & Notes" button you can see SharePoint make a single ajax post to https://<server>/_vti_bin/socialdatainternalservice.json/GetSocialTagInternal which it sends a very concise data : '{"targetPage":"your url here","maximumItemsToReturn":"12"}' and receives in kind a very pretty:
{
"d":{
"MyTags":[
{
"Term":"I like it",
"TermFullPathName":"[Keywords:I like it]",
"TermID":"9f2d5361-a23f-4d95-be9b-f9d385a0f5b9",
"Path":"I like it",
"IsPrivate":false
}
],
"OtherTags":[
{
"Term":"I like it",
"TermFullPathName":"[Keywords:I like it]",
"TermID":"9f2d5361-a23f-4d95-be9b-f9d385a0f5b9",
"Path":"I like it",
"IsPrivate":false
},
...
If anyone can think of any way to get that kind of a return from an existing SP web service I would be eternally grateful.
internalin their name for the same reason you can't find documentation: Microsoft doesn't want you to use them. If you use them, there's no guarantee that Microsoft will not break the API (and your program) in future releases. – Robert Harvey♦ Jan 20 at 0:15