Saturday, 20 October 2012

Lotus connections 3.0 API


//use full urls for getting atom feeds for connections

 
profiles:->{no handle}

1)Getting profile information of particular user by passing user id
https://x.y.com/profiles/atom/profile.do?userid=56AF1BEE-9CE1-4BAE-956F-8DC882B868C9

message board:->

1)getting all message board data

https://x.y.com/profiles/atom/mv/theboard/entries/all.do

2)getting message board of profiles

https://x.y.com/profiles/atom/mv/theboard/entries.do?email=p%40a.com
--------------------------------------------------------------------------------
Communities:-> {no handle}

1)getting community service document->from this you can get urls

https://x.y.com/communities/service/atom/service

2)getting atom feed of all public communities

https://x.y.com/communities/service/atom/communities/all

3)getting atom feed of my communities

https://x.y.com/communities/service/atom/communities/my

4)getting feed of particular community by passing community id

https://x.y.com/communities/service/atom/community/instance?communityUuid=97a426bf-644a-4477-ab87-9300fa80f851

5)getting the members of a particular community

https://x.y.com/communities/service/atom/community/members?communityUuid=97a426bf-644a-4477-ab87-9300fa80f851

6)getting blogs of a community by givving community id

https://x.y.com/blogs/97a426bf-644a-4477-ab87-9300fa80f851/feed/entries/atom

7)getting community xml by passing the community id

https://x.y.com/communities/service/atom/community/instance?communityUuid=e55aba29-552d-4fea-9d6c-13c5e9dd5ea7

--------------------------------------------------------------------------------
Blogs:-> {welcome:->is my handle}

1)getting all the blogs

https://x.y.com/blogs/welcome/feed/entries/atom


2)Top five recently updated  posts in all blogs

https://x.y.com/blogs/welcome/feed/featured/atom

3)Recent comments of blogs

https://x.y.com/blogs/welcome/feed/comments/atom

No comments:

Post a Comment

Custom single threaded java server

 package com.diffengine.csv; import java.io.*; import java.net.*; import java.util.Date; public class Server { public static void main(Str...