Reputation: 947
Based on this information: http://www-10.lotus.com/ldd/appdevwiki.nsf/xpDocViewer.xsp?lookupName=API+Reference#action=openDocument&res_title=OpenSocial_Profiles_API_sbar&content=pdcontent
And a working url for posting updates:
I created this one to try and find out to whom this access token belongs:
https://connections4.e-office.com/connections/opensocial/oauth/rest/people/@me/@self
But than I get Error 501: No service defined for path people/@me/@self
what should the url be ?
Upvotes: 0
Views: 600
Reputation: 1
You can use the Profiles REST API URLs:
http(s)://yourserver/profiles/admin/atom/profileEntry.do?email=mailaddress
or
http(s)://yourserver/profiles/admin/atom/profileEntry.do?uid=uid
Upvotes: 0
Reputation: 947
Apperently you don't need to include: @Self
This is it:
connections/opensocial/oauth/rest/people/@me/
Upvotes: 1