ユーザのプロフィールを表示します.ユーザが自分のプロフィールの個々の部分に対してプライバシ設定が可能なため,与えられたユーザに対して返されるプロフィール中の情報は要求しているその人に基づいて適応されます.
HTTP response codes as returned by the system:
200 - OK (request is ok and content returned)
201 - CREATED (request created new content, URL and id of content in the header)
204 - NO CONTENT (request is ok but no content to return)
400 - ERROR (general error in the request, probably invalid parameters or data)
401 - UNAUTHORIZED (user authentication required for this request)
403 - FORBIDDEN (authorization required, insufficient privileges, user is already authenticated)
404 - NOT FOUND (resource not found, URL is invalid in some way, id or action are invalid)
405 - METHOD NOT ALLOWED (the method is not supported for this entity type)
406 - NOT ACCEPTABLE (the data format requested is unavailable for this entity type)
500 - INTERNAL SERVER ERROR (general server failure, probably a failure in the provider)
501 - NOT IMPLEMENTED (indicates that a prefix is invalid)
Sample Entity URLs (_id=':ID:') [may not be valid]:
Response Code Details: 200 plus data; 404 if not found, 406 if format unavailable
(GET) ユーザのプロフィールを取得します.応答は,プロフィール所有者のプライバシ設定に従って要求を行っている人に適応されます (/profile/USER.xml).
Custom Actions
image :
show (GET) :
[/profile/:ID:/image] (
html) (
xml) (
json)
ユーザのプロフィール画像を取得します./thumb を付加すると (/profile/USER/image/thumb) サムネイルがあればそれを取得できます.サムネイルがない場合は,メイン画像が返されます./avatar を付加すると (/profile/USER/image/avatar) アバターがあればそれを取得できます.アバターがない場合は,メイン画像が返されます.オプションとして,サイトID URL パラメタを追加すると (/profile/USER/image?siteId={siteid} または /profile/USER/image/thumb?siteId={siteid}) サイト権限を確認することができます.画像のバイナリを返します.画像が存在しないか許可されていない場合はデフォルト画像が返されます.ユーザ (またはオプションのサイト ID ) が無効の場合は 404 を返します.画像が存在する場合は,アップロードされたものか URL のどちらかで必ず画像を返します (システムがどのように設定されているかに依存.プロフィール2 の sakai.properties をご覧下さい) .画像タグの中で
のように直接使用することができ,必ず何かが返されます.xml のようなリターン形式を指定しないで下さい.
incomingConnectionRequests :
show (GET) :
[/profile/:ID:/incomingConnectionRequests] (
html) (
xml) (
json)
ユーザへのコネクションリクエスト一覧を返します.何もなければ空のリストを返し,ユーザコネクションリクエストを見る権限がなかったり,ユーザが正しくなければ失敗 (404) を返します.
connections :
show (GET) :
[/profile/:ID:/connections] (
html) (
xml) (
json)
ユーザに対するコネクションリストを返します.何もなければ空のリストを返し,ユーザコネクションを見る権限がなかったり,ユーザが正しくなければ失敗 (404) を返します.
URL Redirects
1) /profile/{id}/account ==>
calculated destination
ユーザエンティティプロバイダへ転送することにより,ユーザアカウントの詳細の取得を許可します
Entity class : org.sakaiproject.profile2.model.UserProfile
Type :: bean
|
Name |
Type |
Status |
1) | academicProfileUrl | string | Read/Write |
2) | birthday | string | Read/Write |
3) | birthdayDisplay | string | Read/Write |
4) | businessBiography | string | Read/Write |
5) | companyProfiles | java.util.List | Read/Write |
6) | course | string | Read/Write |
7) | dateOfBirth | java.util.Date | Read/Write |
8) | department | string | Read/Write |
9) | displayName | string | Read/Write |
10) | email | string | Read/Write |
11) | facsimile | string | Read/Write |
12) | favouriteBooks | string | Read/Write |
13) | favouriteMovies | string | Read/Write |
14) | favouriteQuotes | string | Read/Write |
15) | favouriteTvShows | string | Read/Write |
16) | homepage | string | Read/Write |
17) | homephone | string | Read/Write |
18) | imageThumbUrl | string | Read/Write |
19) | imageUrl | string | Read/Write |
20) | locked | boolean | Read/Write |
21) | mobileEmail | string | Read/Write |
22) | mobilephone | string | Read/Write |
23) | nickname | string | Read/Write |
24) | personalSummary | string | Read/Write |
25) | position | string | Read/Write |
26) | props | java.util.Map | Read/Write |
27) | publications | string | Read/Write |
28) | receiveReminder | boolean | Read/Write |
29) | room | string | Read/Write |
30) | school | string | Read/Write |
31) | socialInfo | org.sakaiproject.profile2.model.SocialNetworkingInfo | Read/Write |
32) | staffProfile | string | Read/Write |
33) | status | org.sakaiproject.profile2.model.ProfileStatus | Read/Write |
34) | subjects | string | Read/Write |
35) | suppressionMail | boolean | Read/Write |
36) | suppressionMail2 | boolean | Read/Write |
37) | svemail | string | Read/Write |
38) | svfacsimile | string | Read/Write |
39) | svhomepage | string | Read/Write |
40) | svhomephone | string | Read/Write |
41) | svmobileEmail | string | Read/Write |
42) | svmobilephone | string | Read/Write |
43) | svworkphone | string | Read/Write |
44) | universityProfileUrl | string | Read/Write |
45) | userUuid | string | Read/Write |
46) | workphone | string | Read/Write |
Data and Request Handling
Output formats : html, xml, json
Input formats : No formats allowed
No Access Provider registered for request processing
Capabilities
| Name | Type | Description |
1 | CoreEntityProvider | org.sakaiproject.entitybroker.entityprovider.CoreEntityProvider | |
2 | EntityProvider | org.sakaiproject.entitybroker.entityprovider.EntityProvider | |
3 | ActionsExecutable | org.sakaiproject.entitybroker.entityprovider.capabilities.ActionsExecutable | |
4 | AutoRegisterEntityProvider | org.sakaiproject.entitybroker.entityprovider.capabilities.AutoRegisterEntityProvider | |
5 | Describeable | org.sakaiproject.entitybroker.entityprovider.capabilities.Describeable | |
6 | Outputable | org.sakaiproject.entitybroker.entityprovider.capabilities.Outputable | |
7 | Redirectable | org.sakaiproject.entitybroker.entityprovider.capabilities.Redirectable | |
8 | RequestAware | org.sakaiproject.entitybroker.entityprovider.capabilities.RequestAware | |
9 | Resolvable | org.sakaiproject.entitybroker.entityprovider.capabilities.Resolvable | |
10 | Sampleable | org.sakaiproject.entitybroker.entityprovider.capabilities.Sampleable | |
REST:: 1.0.1 SVN: $Revision$ : $Date$