Changes between Version 2 and Version 3 of WebRpc
- Timestamp:
- Apr 25, 2007, 2:31:57 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebRpc
v2 v3 38 38 * If an RPC fails, the returned XML document is 39 39 40 {{{<error> 40 {{{ 41 <error> 41 42 <error_num>N</error_num> 42 43 <error_string>xxx</error_string> 43 </error>}}} 44 </error> 45 }}} 44 46 45 47 where N is a BOINC error number and xxx is a textual description. BOINC error numbers are in lib/error_numbers.h; common errors are: … … 81 83 project_url/create_account.php 82 84 '''input''':: 83 email_addr: email address passwd_hash: the MD5 hash of the concatenation 85 email_addr: email address passwd_hash: the MD5 hash of the concatenation of the user's password and the email address. user_name: the user name 84 86 '''output''':: 85 87 … … 93 95 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. 94 96 95 96 97 == Look up account == 97 98 98 99 99 '''URL''':: … … 110 110 111 111 '''action''':: 112 If an account with the given email address doesn't exist, return an error. If passwd_hash is given and is correct, 112 If an account with the given email address doesn't exist, return an error. If passwd_hash is given and is correct, return the account key. 113 113 114 114