Changes between Version 43 and Version 44 of WebRpc
- Timestamp:
- Aug 21, 2009, 3:51:20 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebRpc
v43 v44 180 180 ---- 181 181 == Create account == #create_account 182 '''URL''':: 183 project_url/create_account.php 184 '''input''':: 185 email_addr: 186 email address. [[BR]] [[BR]] 187 passwd_hash: 188 The MD5 hash of the concatenation of the user's password and the lower case form of their EMail address. The user password itself is never sent on an RPC call for privacy. [[BR]] [[BR]] 189 user_name: 190 the user name.[[BR]] [[BR]] 191 [ invite_code: ] 192 Invitation code if project requires invitation to create accounts.[[BR]] [[BR]] 193 '''examples''':: 182 '''URL''' 183 project_url/create_account.php 184 185 '''input''' 186 187 email_addr: email address. 188 189 passwd_hash: The MD5 hash of the concatenation of the user's password and the lower case form of their EMail address. The user password itself is never sent on an RPC call for privacy. 190 191 user_name: the user name. 192 193 [ invite_code: ] Invitation code if project requires invitation to create accounts. 194 195 '''example''':: 194 196 http://ralph.bakerlab.org/create_account.php?email_addr=feet1st@noyaspamhoo.com&passwd_hash=2ab548fae3162ccfa1a2d41a55557a92&user_name=CrunchAll 195 197 196 '''output''':: 198 '''output''' 197 199 198 200 {{{ 199 201 <account_out> 200 202 <authenticator>XXX</authenticator> 203 [ <opaque_auth>xxx</opaque_auth> ] 201 204 </account_out> 202 205 }}} 203 206 204 '''action''':: 205 If the project already has an account with that email address, and a different password, it returns an error. If an account with that email address exists and has the same password, it returns the authenticator. Otherwise the project creates an account and returns the authenticator. 207 '''action''' 208 209 If the project already has an account with that email address, and a different password, it returns an error. 210 If an account with that email address exists and has the same password, it returns the authenticator. 211 Otherwise the project creates an account and returns the authenticator. 212 213 If <opaque_auth> is included in the reply, 214 all subsequent RPCs that reference the account must supply the given string 215 as well as the authenticator. 216 206 217 ---- 207 218 == Look up account == #lookup_account … … 220 231 <account_out> 221 232 [ <authenticator>XXX</authenticator> ] 233 [ <opaque_auth>xxx</opaque_auth> ] 222 234 </account_out> 223 235 }}} … … 227 239 The authentication string may also be obtained using the [userw:Boinccmd_tool#Account_query_and_attach boinccmd --lookup_account] tool from an attached BOINC client; or, if the client is attached to the project and not using a weak authentication key, it is also stored in the project's account file, in the <authenticator> tag. This file is located in the BOINC data directory of the BOINC client, and called account_*.xml (where * is replaced by the project URL, with the "!http://" removed and any slashes replaced by underscores; ex: account_boinc.bakerlab.org_rosetta.xml). 228 240 241 If <opaque_auth> is included in the reply, 242 all subsequent RPCs that reference the account must supply the given string 243 as well as the authenticator. 229 244 ---- 230 245 == Get account info == #am_get_info … … 235 250 account_key: 236 251 Authentication string for account to retrieve information about. See [#create_account create account RPC] or [#lookup_account lookup account RPC] [[BR]] [[BR]] 252 253 opaque_auth: opaque authenticator, if present. 254 237 255 '''examples''':: 238 256 '''output''':: … … 271 289 account_key: 272 290 Authentication string of user account being changed. See [#create_account create account RPC] or [#lookup_account lookup account RPC] [[BR]] [[BR]] 291 292 opaque_auth: opaque authenticator, if present. 293 273 294 [ name: ] 274 295 [[BR]] [[BR]] … … 314 335 account_key: 315 336 Authentication string of user account owning the host being changed. See [#create_account create account RPC] or [#lookup_account lookup account RPC] [[BR]] [[BR]] 337 338 opaque_auth: opaque authenticator, if present. 339 316 340 hostid: 317 341 [[BR]] [[BR]] … … 339 363 [ auth: ] 340 364 Authentication string of user to display. See [#create_account create account RPC] or [#lookup_account lookup account RPC]. Either id: or auth: must be specified. [[BR]] [[BR]] 365 366 opaque_auth: opaque authenticator, if present. 367 341 368 format: 342 369 output formatting. 'xml' is only supported value (default is HTML formatting) [[BR]] [[BR]] … … 407 434 authenticator: 408 435 Authentication string for user account to retrieve pending credit information about. See [#create_account create account RPC] or [#lookup_account lookup account RPC] [[BR]] [[BR]] 436 437 opaque_auth: opaque authenticator, if present. 438 409 439 '''examples''':: 410 440 http://boinc.bakerlab.org/rosetta/pending.php?format=xml&authenticator=X … … 429 459 account_key: 430 460 Authentication string of team founder's user account. See [#create_account create account RPC] or [#lookup_account lookup account RPC] [[BR]] [[BR]] 461 462 opaque_auth: opaque authenticator, if present. 463 431 464 name: 432 465 name of team. [[BR]] [[BR]] … … 535 568 [ account_key: ] 536 569 Authentication string of a team administrator's user account. See [#create_account create account RPC] or [#lookup_account lookup account RPC] [[BR]] [[BR]] 570 571 opaque_auth: opaque authenticator, if present. 572 537 573 xml: 538 574 output formatting. 0=HTML, 1=XML. (default is 0) [[BR]] [[BR]] … … 574 610 account_key: 575 611 Authentication string of user account to change preferences for. See [#create_account create account RPC] or [#lookup_account lookup account RPC] [[BR]] [[BR]] 612 613 opaque_auth: opaque authenticator, if present. 614 576 615 [ avatar_url: ] 577 616 ''Note: the image will be downloaded and stored locally. Only JPG and PNG accepted.'' [[BR]] [[BR]]