Changes between Version 1 and Version 2 of WebRpc
- Timestamp:
- Apr 25, 2007, 2:19:55 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebRpc
v1 v2 2 2 3 3 4 === Contents === 5 6 * [http://boinc.berkeley.edu/#overview Overview] 7 * [http://boinc.berkeley.edu/#project_config# Project configuration] 8 * [http://boinc.berkeley.edu/#create_account Create account] 9 * [http://boinc.berkeley.edu/#lookup_account Lookup account] 10 * [http://boinc.berkeley.edu/#am_get_info Get account info] 11 * [http://boinc.berkeley.edu/#am_set_info Set account info] 12 * [http://boinc.berkeley.edu/#am_set_host_info Set host info] 13 * [http://boinc.berkeley.edu/#show_user Get account/host credit info] 14 * [http://boinc.berkeley.edu/#create_team Create team] 15 * [http://boinc.berkeley.edu/#team_lookup Lookup teams by name] 16 * [http://boinc.berkeley.edu/#team_lookup_id Lookup team by ID] 17 * [http://boinc.berkeley.edu/#team_email_list Get team member list] 18 * [http://boinc.berkeley.edu/#edit_forum_preferences_action Set forum preferences] 19 * [http://boinc.berkeley.edu/#forum_get_user_posts Get last user's posts from the forum] 20 * [http://boinc.berkeley.edu/#forum_get_user_threads Get last user's threads from the forum] 21 * [http://boinc.berkeley.edu/#apps Get list of applications and versions] 22 23 24 === Overview === 25 BOINC projects export a number of Web RPCs for creating, querying and updating accounts and host records, and miscellaneous other purposes. These can be used for [AccountManagement account management systems] and credit statistics web sites. 4 == Contents == 5 6 * [WebRpc#Overview Overview] 7 * [WebRpc#Projectconfiguration Project configuration] 8 * [WebRpc#Createaccount Create account] 9 * [WebRpc#Lookupaccount Lookup account] 10 * [WebRpc#Getaccountinfo Get account info] 11 * [WebRpc#Setaccountinfo Set account info] 12 * [WebRpc#Sethostinfo Set host info] 13 * [WebRpc#Getaccounthostcreditinformation Get account/host credit info] 14 * [WebRpc#Createteam Create team] 15 * [WebRpc#Lookupteamsbyname Lookup teams by name] 16 * [WebRpc#LookupteambyID Lookup team by ID] 17 * [WebRpc#Getteammemberlist Get team member list] 18 * [WebRpc#Setforumpreferences Set forum preferences] 19 * [WebRpc#Getlastuserspostsfromtheforum Get last user's posts from the forum] 20 * [WebRpc#Getlastusersthreadsfromtheforum Get last user's threads from the forum] 21 * [WebRpc#Getlistofapplicationversions Get list of applications and versions] 22 23 24 == Overview == 25 26 BOINC projects export a number of Web RPCs for creating, querying and updating accounts and host records, and miscellaneous other purposes. These can be used for [AccountManagement account management systems] and credit statistics web sites. 26 27 27 28 BOINC's RPC mechanisms have the following conventions: … … 30 31 * Each RPC is an HTTP GET transaction. 31 32 * The input is the GET arguments, i.e. a string of the form 33 32 34 {{{ 33 35 param1=val1¶m2=val2&...¶mn=valn 34 36 }}} 35 37 where param1 ... paramN are the parameter names, and val1 ... valn are the values. Parameter values must be URL-encoded (for example, using PHP's `urlencode` function). 36 38 * If an RPC fails, the returned XML document is 39 37 40 {{{<error> 38 41 <error_num>N</error_num> 39 42 <error_string>xxx</error_string> 40 43 </error>}}} 41 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: 44 45 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: 42 46 43 47 '''-1''':: … … 67 71 68 72 69 === Project configuration === 70 Each BOINC project exports some configuration items relevant to attaching and creating accounts. This RPC is documented [ProjectConfigRpc here]. 71 === Create account === 73 == Project configuration == 74 75 Each BOINC project exports some configuration items relevant to attaching and creating accounts. This RPC is documented [ProjectConfigRpc here]. 76 77 == Create account == 72 78 73 79 … … 78 84 '''output''':: 79 85 80 {{{<account_out> 86 {{{ 87 <account_out> 81 88 <authenticator>XXX</authenticator> 82 </account_out> }}}83 84 '''action''':: 85 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. 86 87 88 89 == = Look up account ===89 </account_out> 90 }}} 91 92 '''action''':: 93 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 95 96 == Look up account == 90 97 91 98 … … 93 100 project_url/lookup_account.php 94 101 '''input''':: 95 email_addr: email address [ passwd_hash ]: the MD5 hash of the concatenation of the user's password and the email address. 96 '''output''':: 97 98 {{{<account_out> 102 email_addr: email address [ passwd_hash ]: the MD5 hash of the concatenation of the user's password and the email address. 103 '''output''':: 104 105 {{{ 106 <account_out> 99 107 [ <authenticator>XXX</authenticator> ] 100 108 </account_out> 101 }}} 102 103 '''action''':: 104 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. 105 106 107 108 === Get account info === 109 }}} 110 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, return the account key. 113 114 115 == Get account info == 109 116 110 117 … … 115 122 '''output''':: 116 123 117 {{{<am_get_info_reply> 124 {{{ 125 <am_get_info_reply> 118 126 <success/> 119 127 <id>ID</id> … … 134 142 <venue>X</venue> 135 143 </am_get_info_reply> 136 144 }}} 137 145 138 146 '''action''':: 139 147 returns data associated with the given account 140 148 141 142 143 === Set account info === 149 == Set account info == 144 150 145 151 … … 150 156 '''output''':: 151 157 152 {{{<am_set_info_reply> 158 {{{ 159 <am_set_info_reply> 153 160 <success/> 154 </am_set_info_reply>}}} 155 156 '''action''':: 157 Updates one or more attributes of the given account. The password hash is MD5(password+lower_case(email_addr)). If email address is changed, you must also change the password hash. 158 159 160 161 === Set host info === 161 </am_set_info_reply> 162 }}} 163 164 '''action''':: 165 Updates one or more attributes of the given account. The password hash is MD5(password+lower_case(email_addr)). If email address is changed, you must also change the password hash. 166 167 == Set host info == 162 168 163 169 … … 168 174 '''output''':: 169 175 170 {{{<am_set_host_info_reply> 176 {{{ 177 <am_set_host_info_reply> 171 178 <success/> 172 </am_set_host_info_reply>}}} 179 </am_set_host_info_reply> 180 }}} 173 181 174 182 '''action''':: 175 183 Updates the host's venue 176 184 177 178 179 === Get account/host credit information === 185 == Get account/host credit information == 180 186 181 187 … … 186 192 '''output''':: 187 193 188 {{{<user> 194 {{{ 195 <user> 189 196 <id>123</id> 190 197 <cpid>fe0b2753a355b17864ec061eb1b9e8de</cpid> … … 236 243 237 244 '''action''':: 238 Returns info about an account. If called with the account key, returns a list of hosts associated with the account. 239 240 241 242 === Create team === 243 245 Returns info about an account. If called with the account key, returns a list of hosts associated with the account. 246 247 == Create team == 244 248 245 249 '''URL''':: … … 249 253 '''output''':: 250 254 251 {{{<create_team_reply> 255 {{{ 256 <create_team_reply> 252 257 <success/> 253 258 <teamid>N</teamid> … … 258 263 Creates a team 259 264 260 261 262 === Look up teams by name === 265 == Look up teams by name == 263 266 264 267 … … 269 272 '''output''':: 270 273 271 {{{<teams> 274 {{{ 275 <teams> 272 276 <team> 273 277 <id>5</id> … … 297 301 298 302 299 300 === Look up team by ID === 303 == Look up team by ID == 301 304 302 305 … … 307 310 '''output''':: 308 311 309 {{{<team> 312 {{{ 313 <team> 310 314 <id>5</id> 311 315 <name>BOINC@AUSTRALIA</name> … … 318 322 319 323 320 321 === Get team member list === 324 == Get team member list == 322 325 323 326 … … 328 331 '''output''':: 329 332 330 {{{<users> 333 {{{ 334 <users> 331 335 <user> 332 336 <id>1</id> … … 343 347 </user> 344 348 [ ... ] 345 </users>}}} 349 </users> 350 }}} 346 351 347 352 '''action''':: … … 349 354 350 355 351 352 === Set forum preferences === 356 == Set forum preferences == 353 357 354 358 … … 363 367 364 368 365 366 === Get last user's posts from the forum === 369 == Get last user's posts from the forum == 367 370 368 371 … … 373 376 '''output''':: 374 377 375 {{{<rpc_response> 378 {{{ 379 <rpc_response> 376 380 <count>1</count> 377 381 <posts> … … 384 388 [ ... ] 385 389 </posts> 386 </rpc_response>}}} 390 </rpc_response> 391 }}} 387 392 388 393 '''action''':: … … 390 395 391 396 392 393 === Get last user's threads from the forum === 397 == Get last user's threads from the forum == 394 398 395 399 … … 400 404 '''output''':: 401 405 402 {{{<rpc_response> 406 {{{ 407 <rpc_response> 403 408 <count>1</count> 404 409 <threads> … … 413 418 [...] 414 419 </threads> 415 </rpc_response>}}} 420 </rpc_response> 421 }}} 416 422 417 423 '''action''':: … … 419 425 420 426 421 422 === Get list of application versions === 423 427 == Get list of application versions == 424 428 425 429 '''URL'''::