Changes between Version 15 and Version 16 of DeveloperGuidelines/WebServices
- Timestamp:
- 08/14/09 00:16:16 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/WebServices
v15 v16 21 21 }}} 22 22 23 Can authenticate using wget/Curl (no need for browser):23 Can test authentication/REST using wget/curl: 24 24 * http://groups.google.com/group/web2py/msg/dde8335c4ec26b99 25 * Rest-UI client: http://code.google.com/p/rest-client/ 25 26 Token-based authentication: 26 27 * http://groups.google.co.uk/group/web2py/browse_thread/thread/98258d69b6a6f927 27 28 28 Note that mo t web-services clients don't support cookies & hence are stateless (no sessions support):29 Note that most web-services clients don't support cookies & hence are stateless (no sessions support): 29 30 * http://groups.google.com/group/web2py/browse_thread/thread/6538ae13cb8f28d3 31 * use {{{session.forget()}}} inside controllers expecting such clients 30 32 * XML-RPC client which does support Cookies: http://code.activestate.com/recipes/501148/ 31 33